You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.4 KiB
Modula-2
35 lines
1.4 KiB
Modula-2
|
5 months ago
|
module weather_go
|
||
|
|
|
||
|
|
go 1.24.1
|
||
|
|
|
||
|
|
require (
|
||
|
|
github.com/astaxie/beego v1.12.3
|
||
|
|
github.com/go-sql-driver/mysql v1.6.0
|
||
|
|
github.com/robfig/cron v1.2.0
|
||
|
|
github.com/smartystreets/goconvey v1.6.4
|
||
|
|
)
|
||
|
|
|
||
|
|
require (
|
||
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
||
|
|
github.com/cespare/xxhash/v2 v2.1.1 // indirect
|
||
|
|
github.com/golang/protobuf v1.4.2 // indirect
|
||
|
|
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 // indirect
|
||
|
|
github.com/hashicorp/golang-lru v0.5.4 // indirect
|
||
|
|
github.com/jtolds/gls v4.20.0+incompatible // indirect
|
||
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
||
|
|
github.com/pkg/errors v0.9.1 // indirect
|
||
|
|
github.com/prometheus/client_golang v1.7.0 // indirect
|
||
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
||
|
|
github.com/prometheus/common v0.10.0 // indirect
|
||
|
|
github.com/prometheus/procfs v0.1.3 // indirect
|
||
|
|
github.com/shiena/ansicolor v0.0.0-20151119151921-a422bbe96644 // indirect
|
||
|
|
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d // indirect
|
||
|
|
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550 // indirect
|
||
|
|
golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect
|
||
|
|
golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1 // indirect
|
||
|
|
golang.org/x/text v0.3.0 // indirect
|
||
|
|
golang.org/x/tools v0.0.0-20190328211700-ab21143f2384 // indirect
|
||
|
|
google.golang.org/protobuf v1.23.0 // indirect
|
||
|
|
gopkg.in/yaml.v2 v2.2.8 // indirect
|
||
|
|
)
|