-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathgo.mod
22 lines (20 loc) · 846 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
module github.com/turnerlabs/udeploy
require (
github.com/aws/aws-sdk-go v1.37.8
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/go-session/session v3.1.2+incompatible
github.com/google/uuid v1.1.1
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1
github.com/kendavis2/mongo v0.0.0-20190628165901-861912a5131a
github.com/kr/pretty v0.1.0 // indirect
github.com/labstack/echo/v4 v4.0.0
github.com/mitchellh/copystructure v1.0.0
github.com/mongodb/mongo-go-driver v0.3.0
go.mongodb.org/mongo-driver v1.0.3
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421
golang.org/x/tools v0.0.0-20200423185708-01e687557420 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce
)
go 1.13