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