Skip to content

Commit

Permalink
AnnictとEPGStation側の録画ルールとのマッピング情報を保存するように変更 (#84)
Browse files Browse the repository at this point in the history
Signed-off-by: Kotaro Inoue <k.musaino@gmail.com>
  • Loading branch information
musaprg authored Jan 3, 2024
1 parent da9e8eb commit 4b80ecc
Show file tree
Hide file tree
Showing 8 changed files with 735 additions and 71 deletions.
130 changes: 103 additions & 27 deletions annict/generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions annict/query.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ query GetWannaWatchWorks {
viewer {
works(state: WANNA_WATCH){
nodes {
id
title
seasonName
seasonYear
}
}
}
Expand All @@ -12,7 +15,10 @@ query GetWatchingWorks {
viewer {
works(state: WATCHING){
nodes {
id
title
seasonName
seasonYear
}
}
}
Expand All @@ -22,7 +28,10 @@ query GetOnHoldWorks {
viewer {
works(state: WATCHING){
nodes {
id
title
seasonName
seasonYear
}
}
}
Expand Down
21 changes: 21 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,53 @@ toolchain go1.21.1

require (
github.com/Khan/genqlient v0.6.0
github.com/cockroachdb/pebble v1.0.0
github.com/getkin/kin-openapi v0.122.0
github.com/labstack/echo/v4 v4.11.4
github.com/oapi-codegen/runtime v1.1.0
github.com/prometheus/client_golang v1.18.0
github.com/urfave/cli/v2 v2.27.1
golang.org/x/exp v0.0.0-20231226003508-02704c960a9b
golang.org/x/sync v0.5.0
)

require (
github.com/DataDog/zstd v1.4.5 // indirect
github.com/agnivade/levenshtein v1.1.1 // indirect
github.com/alexflint/go-arg v1.4.2 // indirect
github.com/alexflint/go-scalar v1.0.0 // indirect
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/cockroachdb/errors v1.8.1 // indirect
github.com/cockroachdb/logtags v0.0.0-20190617123548-eb05cc24525f // indirect
github.com/cockroachdb/redact v1.0.8 // indirect
github.com/cockroachdb/sentry-go v0.6.1-cockroachdb.2 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/go-openapi/jsonpointer v0.20.0 // indirect
github.com/go-openapi/swag v0.22.4 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/uuid v1.4.0 // indirect
github.com/invopop/yaml v0.2.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/klauspost/compress v1.16.7 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/labstack/gommon v0.4.2 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
github.com/perimeterx/marshmallow v1.1.5 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/prometheus/client_model v0.5.0 // indirect
github.com/prometheus/common v0.45.0 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
github.com/rogpeppe/go-internal v1.12.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/ugorji/go/codec v1.2.11 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
github.com/vektah/gqlparser/v2 v2.5.1 // indirect
Expand All @@ -43,6 +63,7 @@ require (
golang.org/x/sys v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/tools v0.16.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 4b80ecc

Please sign in to comment.