-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
25 lines (23 loc) · 899 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
module github.com/yohanalexander/desafio-banking-go
go 1.14
require (
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/go-playground/locales v0.13.0
github.com/go-playground/universal-translator v0.17.0
github.com/go-playground/validator/v10 v10.4.1
github.com/google/uuid v1.1.2
github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect
github.com/gorilla/mux v1.8.0
github.com/lib/pq v1.8.0 // indirect
github.com/sirupsen/logrus v1.4.2
github.com/smartystreets/assertions v1.1.0 // indirect
github.com/spf13/viper v1.7.1
github.com/stretchr/testify v1.6.1 // indirect
github.com/urfave/negroni v1.0.0
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
golang.org/x/sys v0.0.0-20201130072748-111129e158e2 // indirect
golang.org/x/text v0.3.4 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gorm.io/driver/postgres v1.0.5
gorm.io/gorm v1.20.7
)