implement openweather main

This commit is contained in:
2025-12-04 18:37:46 +09:00
committed by jinsu
parent c59834e92b
commit 386c8dc6bc
9 changed files with 1752 additions and 1 deletions

8
go.mod
View File

@@ -3,17 +3,25 @@ module github.com/neatflowcv/seven-skies
go 1.25.5
require (
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/stretchr/testify v1.11.1
resty.dev/v3 v3.0.0-beta.4
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/uuid v1.6.0 // 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.45.0 // indirect
golang.org/x/net v0.47.0 // indirect
golang.org/x/sys v0.38.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)