55 lines
2.2 KiB
Modula-2
55 lines
2.2 KiB
Modula-2
module john
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/gin-contrib/cors v1.3.1
|
|
github.com/gin-gonic/gin v1.7.4
|
|
github.com/lib/pq v1.10.3
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/spf13/cobra v1.2.1
|
|
github.com/spf13/viper v1.9.0
|
|
google.golang.org/api v0.56.0
|
|
gopkg.in/go-playground/validator.v9 v9.31.0
|
|
)
|
|
|
|
require (
|
|
cloud.google.com/go v0.93.3 // indirect
|
|
github.com/fsnotify/fsnotify v1.5.1 // indirect
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
github.com/go-playground/locales v0.13.0 // indirect
|
|
github.com/go-playground/universal-translator v0.17.0 // indirect
|
|
github.com/go-playground/validator/v10 v10.4.1 // indirect
|
|
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/googleapis/gax-go/v2 v2.1.0 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/json-iterator/go v1.1.11 // indirect
|
|
github.com/leodido/go-urn v1.2.0 // indirect
|
|
github.com/magiconair/properties v1.8.5 // indirect
|
|
github.com/mattn/go-isatty v0.0.12 // indirect
|
|
github.com/mitchellh/mapstructure v1.4.2 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
|
|
github.com/modern-go/reflect2 v1.0.1 // indirect
|
|
github.com/pelletier/go-toml v1.9.4 // indirect
|
|
github.com/spf13/afero v1.6.0 // indirect
|
|
github.com/spf13/cast v1.4.1 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/subosito/gotenv v1.2.0 // indirect
|
|
github.com/ugorji/go/codec v1.1.7 // indirect
|
|
go.opencensus.io v0.23.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
|
|
golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420 // indirect
|
|
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f // indirect
|
|
golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac // indirect
|
|
golang.org/x/text v0.3.6 // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71 // indirect
|
|
google.golang.org/grpc v1.40.0 // indirect
|
|
google.golang.org/protobuf v1.27.1 // indirect
|
|
gopkg.in/ini.v1 v1.63.2 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|