- import jakecoffman/cron ; - 可在 WEB 界面中进行新增任务、编辑任务、手动执行任务等; - 新增 cron.log 记录后台任务执行的日志; - 调整项目初始化,使其支持安装后台任务模块;
50 lines
1.9 KiB
Modula-2
50 lines
1.9 KiB
Modula-2
module github.com/xinliangnote/go-gin-api
|
|
|
|
go 1.15
|
|
|
|
require (
|
|
github.com/99designs/gqlgen v0.13.0
|
|
github.com/StackExchange/wmi v0.0.0-20210224194228-fe8f1750fd46 // indirect
|
|
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751
|
|
github.com/dave/dst v0.26.2
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
|
github.com/fsnotify/fsnotify v1.4.9
|
|
github.com/gin-contrib/pprof v1.3.0
|
|
github.com/gin-gonic/gin v1.6.3
|
|
github.com/go-ole/go-ole v1.2.5 // indirect
|
|
github.com/go-openapi/spec v0.20.0 // indirect
|
|
github.com/go-playground/locales v0.13.0
|
|
github.com/go-playground/universal-translator v0.17.0
|
|
github.com/go-playground/validator/v10 v10.2.0
|
|
github.com/go-redis/redis/v7 v7.4.0
|
|
github.com/golang/protobuf v1.5.2
|
|
github.com/jakecoffman/cron v0.0.0-20190106200828-7e2009c226a5
|
|
github.com/jinzhu/gorm v1.9.16
|
|
github.com/onsi/ginkgo v1.14.2 // indirect
|
|
github.com/onsi/gomega v1.10.4 // indirect
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/prometheus/client_golang v1.10.0
|
|
github.com/rs/cors v1.7.0
|
|
github.com/shirou/gopsutil v3.21.2+incompatible
|
|
github.com/speps/go-hashids v2.0.0+incompatible
|
|
github.com/spf13/cast v1.3.1
|
|
github.com/spf13/viper v1.8.0
|
|
github.com/swaggo/gin-swagger v1.3.0
|
|
github.com/swaggo/swag v1.7.0
|
|
github.com/tklauser/go-sysconf v0.3.4 // indirect
|
|
github.com/vektah/gqlparser/v2 v2.1.0
|
|
go.uber.org/multierr v1.6.0
|
|
go.uber.org/zap v1.17.0
|
|
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22 // indirect
|
|
golang.org/x/text v0.3.6 // indirect
|
|
golang.org/x/time v0.0.0-20191024005414-555d28b269f0
|
|
golang.org/x/tools v0.1.4
|
|
google.golang.org/grpc v1.38.0
|
|
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
|
|
gopkg.in/natefinch/lumberjack.v2 v2.0.0
|
|
gorm.io/driver/mysql v1.0.3
|
|
gorm.io/gorm v1.20.9
|
|
)
|