-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
27 lines (24 loc) · 886 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
25
26
27
module github.com/xyctruth/final
go 1.17
require (
github.com/satori/go.uuid v1.2.0
github.com/sirupsen/logrus v1.8.1
github.com/streadway/amqp v1.0.0
github.com/stretchr/testify v1.7.0
github.com/vmihailenco/msgpack/v5 v5.3.5
gorm.io/driver/mysql v1.1.1
gorm.io/gorm v1.21.12
)
require (
github.com/Rican7/retry v0.3.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-sql-driver/mysql v1.6.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.2 // indirect
github.com/lopezator/migrator v0.3.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
golang.org/x/sys v0.0.0-20211013075003-97ac67df715c // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)