extend.go 282 Bytes
Newer Older
haoyanbin's avatar
1  
haoyanbin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package config

var ExtConfig Extend

// Extend 扩展配置
//  extend:
//    demo:
//      name: demo-name
// 使用方法: config.ExtConfig......即可!!
type Extend struct {
	AMap AMap   // 这里配置对应配置文件的结构即可
}

type AMap struct {
	Key string
}