-
Notifications
You must be signed in to change notification settings - Fork 14
/
go.mod
43 lines (40 loc) · 1.47 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
38
39
40
41
42
43
module github.com/inhere/go-web-skeleton
go 1.18
require (
github.com/globalsign/mgo v0.0.0-20181015135952-eeefdecb41b8
github.com/go-sql-driver/mysql v1.8.1
github.com/go-xorm/xorm v0.7.9
github.com/gomodule/redigo v1.9.2
github.com/gookit/color v1.5.4
github.com/gookit/config/v2 v2.2.5
github.com/gookit/easytpl v1.1.0
github.com/gookit/gcli/v3 v3.2.3
github.com/gookit/goutil v0.6.18
github.com/gookit/i18n v1.2.0
github.com/gookit/ini/v2 v2.2.3
github.com/gookit/rux v1.4.0
github.com/gookit/slog v0.5.7
github.com/json-iterator/go v1.1.12
xorm.io/core v0.7.3
)
require (
dario.cat/mergo v1.0.1 // indirect
filippo.io/edwards25519 v1.1.0 // indirect
github.com/BurntSushi/toml v1.4.0 // indirect
github.com/gookit/filter v1.2.2 // indirect
github.com/gookit/gsr v0.1.0 // indirect
github.com/gookit/validate v1.5.3 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/monoculum/formam v3.5.5+incompatible // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/term v0.27.0 // indirect
golang.org/x/text v0.21.0 // indirect
xorm.io/builder v0.3.13 // indirect
)