- 조회 시, 과거 데이터 무시 - 저장 자체를 최신 데이터만 해도 되긴하는데, 디버깅 용도 혹은 다른 방법으로 쓰일 걸 염두에 두고, 그냥 냅둔다.
47 lines
1.5 KiB
Modula-2
47 lines
1.5 KiB
Modula-2
module github.com/neatflowcv/seven-skies
|
|
|
|
go 1.25.5
|
|
|
|
require (
|
|
github.com/go-chi/chi/v5 v5.2.3
|
|
github.com/go-co-op/gocron/v2 v2.18.2
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/nats-io/nats.go v1.47.0
|
|
github.com/oapi-codegen/runtime v1.1.2
|
|
github.com/oklog/ulid/v2 v2.1.1
|
|
github.com/stretchr/testify v1.11.1
|
|
go.uber.org/mock v0.6.0
|
|
gorm.io/driver/postgres v1.6.0
|
|
gorm.io/gorm v1.31.1
|
|
resty.dev/v3 v3.0.0-beta.4
|
|
)
|
|
|
|
require (
|
|
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
|
github.com/jackc/pgx/v5 v5.7.6 // indirect
|
|
github.com/jackc/puddle/v2 v2.2.2 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/jonboulle/clockwork v0.5.0 // indirect
|
|
github.com/klauspost/compress v1.18.2 // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
github.com/nats-io/nkeys v0.4.12 // indirect
|
|
github.com/nats-io/nuid v1.0.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/robfig/cron/v3 v3.0.1 // indirect
|
|
golang.org/x/crypto v0.46.0 // indirect
|
|
golang.org/x/mod v0.30.0 // indirect
|
|
golang.org/x/net v0.48.0 // indirect
|
|
golang.org/x/sync v0.19.0 // indirect
|
|
golang.org/x/sys v0.39.0 // indirect
|
|
golang.org/x/text v0.32.0 // indirect
|
|
golang.org/x/tools v0.39.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
tool go.uber.org/mock/mockgen
|