migu_music_server/config/extend.go

19 lines
283 B
Go
Raw Permalink Normal View History

2025-03-28 06:07:20 +00:00
package config
var ExtConfig Extend
// Extend 扩展配置
//
// extend:
// demo:
// name: demo-name
//
// 使用方法: config.ExtConfig......即可!!
type Extend struct {
AMap AMap // 这里配置对应配置文件的结构即可
}
type AMap struct {
Key string
}