-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
27 lines (25 loc) · 933 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module github.com/gghcode/apas-todo-apiserver
require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/gin-contrib/cors v1.3.1
github.com/gin-gonic/gin v1.6.3
github.com/go-ozzo/ozzo-validation/v3 v3.8.1
github.com/go-redis/redis v6.15.9+incompatible
github.com/google/wire v0.4.0
github.com/jinzhu/gorm v1.9.16
github.com/lib/pq v1.8.0
github.com/mailru/easyjson v0.7.0 // indirect
github.com/onsi/ginkgo v1.12.0 // indirect
github.com/onsi/gomega v1.9.0 // indirect
github.com/pkg/errors v0.9.1
github.com/satori/go.uuid v1.2.0
github.com/spf13/afero v1.3.5
github.com/stretchr/testify v1.6.1
github.com/swaggo/gin-swagger v1.2.0
github.com/swaggo/swag v1.6.7
github.com/vrischmann/envconfig v1.3.0
golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4
golang.org/x/tools v0.0.0-20191114200427-caa0b0f7d508 // indirect
)
go 1.14