go-wxhelper/config/config.go
2024-02-19 14:57:36 +08:00

13 lines
300 B
Go

package config
// Conf 配置
var Conf conf
// Config
// @description: 配置
type conf struct {
Database db `json:"database" yaml:"database"` // 数据库 配置
Redis redis `json:"redis" yaml:"redis"` // Redis 配置
Mq mq `json:"mq" yaml:"mq"` // MQ 配置
}