-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
32 lines (29 loc) · 1.22 KB
/
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
28
29
30
31
32
module go-starter-template
go 1.18
require (
github.com/Nerzal/gocloak/v6 v6.0.0-20200622153633-5bdb05fcb34b
github.com/go-playground/validator/v10 v10.3.0
github.com/heroku/x v0.0.24
github.com/jinzhu/gorm v1.9.14
github.com/labstack/echo/v4 v4.1.16
github.com/ralberts/golang-starter-template v0.0.0-20200626133905-63151c3e2ca0
)
require (
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/go-playground/locales v0.13.0 // indirect
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-resty/resty/v2 v2.3.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/labstack/gommon v0.3.0 // indirect
github.com/leodido/go-urn v1.2.0 // indirect
github.com/lib/pq v1.7.0 // indirect
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.1.1 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
golang.org/x/net v0.0.0-20200602114024-627f9648deb9 // indirect
golang.org/x/sys v0.0.0-20200622214017-ed371f2e16b4 // indirect
golang.org/x/text v0.3.3 // indirect
)