api-base/go.mod

27 lines
1005 B
Modula-2
Raw Permalink Normal View History

2020-08-03 12:19:47 +00:00
module go-api
go 1.14
require (
git.trj.tw/golang/argparse v1.0.1
git.trj.tw/golang/config-loader v1.0.1
2020-08-16 09:39:13 +00:00
github.com/gabriel-vasile/mimetype v1.1.1
2020-08-17 02:09:36 +00:00
github.com/gin-contrib/cors v1.3.1
2020-08-03 12:19:47 +00:00
github.com/gin-gonic/gin v1.6.3
github.com/go-playground/validator/v10 v10.3.0 // indirect
2020-08-15 17:21:27 +00:00
github.com/go-redis/redis v6.15.9+incompatible
github.com/jmoiron/sqlx v1.2.0
github.com/joho/godotenv v1.3.0
2020-08-03 12:19:47 +00:00
github.com/json-iterator/go v1.1.10 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
2020-08-15 17:21:27 +00:00
github.com/onsi/ginkgo v1.14.0 // indirect
2020-08-17 02:09:36 +00:00
github.com/stretchr/testify v1.5.1 // indirect
golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc // indirect
golang.org/x/sys v0.0.0-20200814200057-3d37ad5750ed // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
2020-08-03 12:19:47 +00:00
google.golang.org/protobuf v1.25.0 // indirect
2020-08-17 02:09:36 +00:00
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
2020-08-16 09:39:13 +00:00
gopkg.in/yaml.v2 v2.3.0
2020-08-03 12:19:47 +00:00
)