-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathgo.mod
47 lines (45 loc) · 1.86 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
44
45
46
47
module RESTfulGo
go 1.13
require (
github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d // indirect
github.com/TarsCloud/TarsGo v1.1.2
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/fsnotify/fsnotify v1.4.7
github.com/gin-contrib/pprof v1.3.0
// 网络请求框架
github.com/gin-gonic/gin v1.6.2
github.com/go-ole/go-ole v1.2.4 // indirect
github.com/go-openapi/spec v0.19.7 // indirect
github.com/go-openapi/swag v0.19.9 // indirect
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/golang/mock v1.4.3 // indirect
github.com/golang/protobuf v1.4.0 // indirect
github.com/jinzhu/gorm v1.9.12
github.com/json-iterator/go v1.1.9 // indirect
github.com/labstack/echo/v4 v4.1.16 // indirect
github.com/leodido/go-urn v1.2.0 // indirect
// API日志工具
github.com/lexkong/log v0.0.0-20180607165131-972f9cd951fc
github.com/mailru/easyjson v0.7.1 // indirect
github.com/onsi/ginkgo v1.12.0 // indirect
github.com/onsi/gomega v1.9.0 // indirect
github.com/satori/go.uuid v1.2.0
// 工具包
github.com/shirou/gopsutil v2.19.12+incompatible
github.com/spf13/pflag v1.0.3
// 配置文件读取
github.com/spf13/viper v1.6.1
github.com/swaggo/echo-swagger v1.0.0 // indirect
github.com/swaggo/gin-swagger v1.2.0
github.com/swaggo/swag v1.6.5
github.com/teris-io/shortid v0.0.0-20171029131806-771a37caa5cf
github.com/urfave/cli v1.22.4 // indirect
github.com/willf/pad v0.0.0-20190207183901-eccfe5d84172
golang.org/x/crypto v0.0.0-20200414173820-0848c9571904
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e // indirect
golang.org/x/sys v0.0.0-20200413165638-669c56c373c4 // indirect
golang.org/x/tools v0.0.0-20200417140056-c07e33ef3290 // indirect
gopkg.in/go-playground/validator.v9 v9.31.0
)