-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
37 lines (35 loc) · 1.2 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
module go-web-app
go 1.16
require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751
github.com/caarlos0/env/v6 v6.5.0
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
github.com/fasthttp/router v1.4.1
github.com/go-gormigrate/gormigrate/v2 v2.0.0
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/google/uuid v1.2.0
github.com/johntdyer/slack-go v0.0.0-20180213144715-95fac1160b22
github.com/json-iterator/go v1.1.10
github.com/miekg/dns v1.1.42
github.com/onrik/gorm-logrus v0.3.0
github.com/onsi/ginkgo v1.15.0 // indirect
github.com/onsi/gomega v1.10.5 // indirect
github.com/pkg/errors v0.9.1
github.com/rs/xid v1.2.1
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/sergi/go-diff v1.2.0
github.com/serialx/hashring v0.0.0-20200727003509-22c0c7ab6b1b
github.com/sirupsen/logrus v1.8.1
github.com/swaggo/http-swagger v1.2.6
github.com/swaggo/swag v1.7.9
github.com/urfave/cli/v2 v2.3.0
github.com/valyala/fasthttp v1.34.0
golang.org/x/crypto v0.1.0
golang.org/x/net v0.7.0
gopkg.in/redis.v5 v5.2.9
gopkg.in/yaml.v3 v3.0.0 // indirect
gorm.io/driver/mysql v1.0.5
gorm.io/driver/postgres v1.1.0
gorm.io/driver/sqlite v1.1.1
gorm.io/gorm v1.21.10
)