go-wxhelper/config/config.go

12 lines
237 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 配置
}