-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
24 lines (22 loc) · 892 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
module api_demo_with_gorilla.mux
go 1.16
require (
github.com/aws/aws-sdk-go v1.27.0
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/go-playground/validator v9.31.0+incompatible
github.com/gorilla/csrf v1.7.0
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.4.2
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/sirupsen/logrus v1.4.2
github.com/stretchr/testify v1.7.5
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gorm.io/driver/mysql v1.3.4
gorm.io/gorm v1.23.4
)