extend.go 280 B

12345678910111213141516
  1. package config
  2. var ExtConfig Extend
  3. // Extend 扩展配置
  4. // extend:
  5. // demo:
  6. // name: demo-name
  7. // 使用方法: config.ExtConfig......即可!!
  8. type Extend struct {
  9. AMap AMap // 这里配置对应配置文件的结构即可
  10. }
  11. type AMap struct {
  12. Key string
  13. }