-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
64 lines (62 loc) · 2.66 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
module go-rest-skeleton
go 1.14
require (
github.com/99designs/gqlgen v0.13.0
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751
github.com/aws/aws-sdk-go v1.33.19
github.com/bxcodec/faker v2.0.1+incompatible
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/gin-contrib/sessions v0.0.3
github.com/gin-gonic/gin v1.6.3
github.com/go-oauth2/oauth2 v3.9.2+incompatible // indirect
github.com/go-oauth2/oauth2/v4 v4.1.2
github.com/go-openapi/spec v0.19.12 // indirect
github.com/go-ozzo/ozzo-validation/v4 v4.2.2
github.com/go-playground/validator/v10 v10.4.1 // indirect
github.com/go-redis/redis/v8 v8.0.0-beta.6
github.com/go-session/session v3.1.2+incompatible
github.com/golang/protobuf v1.4.3
github.com/google/uuid v1.1.2
github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645
github.com/joho/godotenv v1.3.0
github.com/mailru/easyjson v0.7.6 // indirect
github.com/minio/minio-go/v7 v7.0.3
github.com/myesui/uuid v1.0.0 // indirect
github.com/nicksnyder/go-i18n/v2 v2.0.3
github.com/onsi/ginkgo v1.14.0 // indirect
github.com/opentracing/opentracing-go v1.1.1-0.20190913142402-a7454ce5950e
github.com/rollbar/rollbar-go v1.2.0
github.com/rs/zerolog v1.19.0
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/stretchr/testify v1.6.1
github.com/swaggo/gin-swagger v1.3.0
github.com/swaggo/swag v1.6.9
github.com/tidwall/btree v0.3.0 // indirect
github.com/tidwall/buntdb v1.1.4 // indirect
github.com/tidwall/gjson v1.6.3 // indirect
github.com/tidwall/match v1.0.2 // indirect
github.com/tidwall/rtree v0.0.0-20201103190202-0d877048965d // indirect
github.com/twinj/uuid v1.0.0
github.com/urfave/cli/v2 v2.3.0
github.com/vektah/gqlparser/v2 v2.1.0
golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b // indirect
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9
golang.org/x/sys v0.0.0-20201109165425-215b40eba54c // indirect
golang.org/x/text v0.3.4
golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/grpc v1.31.0
google.golang.org/protobuf v1.25.0
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
gopkg.in/oauth2.v3 v3.12.0
gopkg.in/stretchr/testify.v1 v1.2.2 // indirect
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
gorm.io/driver/mysql v1.0.1
gorm.io/driver/postgres v1.0.0
gorm.io/gorm v1.20.1
)