-
Notifications
You must be signed in to change notification settings - Fork 18
/
go.mod
29 lines (26 loc) · 922 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
28
29
module github.com/xiaoxuxiansheng/gotcc
go 1.19
require (
github.com/demdxx/gocast v1.2.0
github.com/spf13/cast v1.6.0
github.com/stretchr/testify v1.8.1
github.com/xiaoxuxiansheng/redis_lock v0.0.0-20230809145747-b25757826393
go.uber.org/zap v1.25.0
gopkg.in/natefinch/lumberjack.v2 v2.2.1
gorm.io/driver/mysql v1.5.1
gorm.io/gorm v1.25.2
)
require (
github.com/DATA-DOG/go-sqlmock v1.5.2 // indirect
github.com/agiledragon/gomonkey/v2 v2.11.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-sql-driver/mysql v1.7.0 // indirect
github.com/gomodule/redigo v1.8.9 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/multierr v1.10.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)