forked from xinliangnote/go-gin-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
39 lines (37 loc) · 1.35 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
module github.com/xinliangnote/go-gin-api
go 1.16
require (
github.com/99designs/gqlgen v0.14.0
github.com/StackExchange/wmi v1.2.1 // indirect
github.com/dave/dst v0.26.2
github.com/fsnotify/fsnotify v1.5.1
github.com/gin-contrib/pprof v1.3.0
github.com/gin-gonic/gin v1.7.4
github.com/go-playground/locales v0.14.0
github.com/go-playground/universal-translator v0.18.0
github.com/go-playground/validator/v10 v10.9.0
github.com/go-redis/redis/v7 v7.4.1
github.com/gorilla/websocket v1.4.2
github.com/jakecoffman/cron v0.0.0-20190106200828-7e2009c226a5
github.com/jinzhu/gorm v1.9.16
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.11.0
github.com/rs/cors v1.8.0
github.com/shirou/gopsutil v3.21.10+incompatible
github.com/speps/go-hashids v1.0.0
github.com/spf13/cast v1.4.1
github.com/spf13/viper v1.9.0
github.com/swaggo/gin-swagger v1.3.3
github.com/swaggo/swag v1.7.4
github.com/tklauser/go-sysconf v0.3.9 // indirect
github.com/vektah/gqlparser/v2 v2.2.0
go.uber.org/multierr v1.7.0
go.uber.org/zap v1.19.1
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11
golang.org/x/tools v0.1.7
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
gopkg.in/natefinch/lumberjack.v2 v2.0.0
gorm.io/driver/mysql v1.2.0
gorm.io/gorm v1.22.3
)