-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathgo.mod
More file actions
41 lines (38 loc) · 1.3 KB
/
go.mod
File metadata and controls
41 lines (38 loc) · 1.3 KB
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
module github.com/wuqinqiang/helloword
go 1.19
require (
github.com/go-resty/resty/v2 v2.7.0
github.com/google/uuid v1.3.0
github.com/mitchellh/go-homedir v1.1.0
github.com/pkg/errors v0.9.1
github.com/robfig/cron/v3 v3.0.0
github.com/sashabaranov/go-gpt3 v1.3.1
github.com/stretchr/testify v1.8.0
github.com/urfave/cli/v2 v2.24.4
go.uber.org/zap v1.24.0
gopkg.in/yaml.v3 v3.0.1
gorm.io/driver/sqlite v1.4.3
gorm.io/gen v0.3.21
gorm.io/gorm v1.24.5
gorm.io/plugin/dbresolver v1.4.1
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-sql-driver/mysql v1.7.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/mattn/go-sqlite3 v1.14.15 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/mod v0.8.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/tools v0.6.0 // indirect
gorm.io/datatypes v1.1.0 // indirect
gorm.io/driver/mysql v1.4.6 // indirect
gorm.io/hints v1.1.1 // indirect
)