forked from lxh/go-wxhelper
13 lines
299 B
Go
13 lines
299 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 配置
|
|
Ai ai `json:"ai" yaml:"ai"` // AI配置
|
|
}
|