forked from GSabadini/go-clean-architecture
-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
24 lines (22 loc) · 836 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 github.com/gsabadini/go-bank-transfer
go 1.16
require (
github.com/gin-gonic/gin v1.6.3
github.com/go-playground/locales v0.13.0
github.com/go-playground/universal-translator v0.17.0
github.com/go-playground/validator/v10 v10.3.0
github.com/gorilla/mux v1.7.4
github.com/kr/pretty v0.2.0 // indirect
github.com/lib/pq v1.3.0
github.com/pkg/errors v0.9.1
github.com/satori/go.uuid v1.2.0
github.com/sirupsen/logrus v1.4.2
github.com/stretchr/testify v1.5.1 // indirect
github.com/urfave/negroni v1.0.0
go.mongodb.org/mongo-driver v1.4.0
go.uber.org/zap v1.15.0
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22
)