-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
32 lines (27 loc) · 823 Bytes
/
go.mod
File metadata and controls
32 lines (27 loc) · 823 Bytes
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
module go-example
go 1.18
require (
github.com/bytedance/mockey v1.2.13
github.com/robfig/cron/v3 v3.0.1
github.com/smartystreets/goconvey v1.8.1
github.com/spf13/cobra v1.8.0
gorm.io/gorm v1.25.12
)
require (
github.com/gopherjs/gopherjs v1.17.2 // indirect
github.com/jtolds/gls v4.20.0+incompatible // indirect
github.com/smarty/assertions v1.15.0 // indirect
golang.org/x/arch v0.11.0 // indirect
golang.org/x/sys v0.26.0 // indirect
)
require (
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
golang.org/x/exp v0.0.0-20240409090435-93d18d7e34b8
golang.org/x/text v0.14.0 // indirect
)
require (
github.com/flosch/pongo2 v0.0.0-20200913210552-0d938eb266f3
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
)