film/go.mod

50 lines
1.8 KiB
Modula-2
Raw Permalink Normal View History

2023-04-06 13:46:19 +08:00
module film
go 1.18
require (
github.com/go-co-op/gocron v1.19.0
2023-08-27 16:15:29 +08:00
github.com/gogf/gf/v2 v2.5.2
2023-04-06 13:46:19 +08:00
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible
github.com/mitchellh/mapstructure v1.5.0
github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5
github.com/sirupsen/logrus v1.9.0
github.com/smbrave/goutil v0.0.0-20230208141215-e3360c3bfd1b
github.com/spf13/cast v1.5.0
github.com/spf13/viper v1.15.0
2023-04-07 23:51:09 +08:00
gitlab.com/jiangyong27/gobase v1.0.23
2023-04-06 13:46:19 +08:00
gorm.io/driver/mysql v1.4.7
gorm.io/gorm v1.24.6
)
require (
2023-04-07 23:51:09 +08:00
github.com/astaxie/beego v1.7.1 // indirect
github.com/bradfitz/gomemcache v0.0.0-20160117192205-fb1f79c6b65a // indirect
github.com/fatih/structs v1.1.0 // indirect
2023-04-06 13:46:19 +08:00
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/go-sql-driver/mysql v1.7.0 // indirect
2023-04-07 23:51:09 +08:00
github.com/gomodule/redigo v1.8.1 // indirect
2023-04-06 13:46:19 +08:00
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/jonboulle/clockwork v0.4.0 // indirect
github.com/lestrrat-go/strftime v1.0.6 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/robfig/cron/v3 v3.0.1 // indirect
2023-04-07 23:51:09 +08:00
github.com/silenceper/wechat v1.2.6 // indirect
2023-04-06 13:46:19 +08:00
github.com/spf13/afero v1.9.3 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.4.2 // indirect
2023-08-27 16:15:29 +08:00
go.opentelemetry.io/otel v1.14.0 // indirect
go.opentelemetry.io/otel/trace v1.14.0 // indirect
2023-04-07 23:51:09 +08:00
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
2023-04-06 13:46:19 +08:00
golang.org/x/sync v0.1.0 // indirect
2023-08-27 16:15:29 +08:00
golang.org/x/sys v0.10.0 // indirect
golang.org/x/text v0.11.0 // indirect
2023-04-06 13:46:19 +08:00
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)