go-wxhelper/config/config.go

13 lines
300 B
Go
Raw Permalink Normal View History

2024-01-19 12:06:30 +08:00
package config
// Conf 配置
var Conf conf
// Config
// @description: 配置
type conf struct {
Database db `json:"database" yaml:"database"` // 数据库 配置
Redis redis `json:"redis" yaml:"redis"` // Redis 配置
2024-02-19 14:57:36 +08:00
Mq mq `json:"mq" yaml:"mq"` // MQ 配置
2024-01-19 12:06:30 +08:00
}