go-wxhelper/config/config.go
李寻欢 b4470b0888
All checks were successful
BuildImage / build-image (push) Successful in 1m22s
水群排行榜新增周榜和月榜
2023-11-19 11:36:15 +08:00

13 lines
336 B
Go

package config
var Conf Config
// Config
// @description: 配置
type Config struct {
Task task `json:"task" yaml:"task"` // 定时任务配置
MySQL mysql `json:"mysql" yaml:"mysql"` // MySQL 配置
Wechat wechat `json:"wechat" yaml:"wechat"` // 微信助手
Ai ai `json:"ai" yaml:"ai"` // AI配置
}