Files
proxy_server/config/extend.go

23 lines
452 B
Go
Raw Normal View History

2025-07-12 15:25:26 +08:00
package config
var ExtConfig Extend
// Extend 扩展配置
//
// extend:
// demo:
// name: demo-name
//
// 使用方法: config.ExtConfig......即可!!
type Extend struct {
AMap AMap // 这里配置对应配置文件的结构即可
TrxGridUrl string
CliproxyUrl string //cliproxy服务地址
CliproxyApiUrl string //cliproxy api地址
2025-07-24 23:34:07 +08:00
DaisysmsUrl string //daisysms服务地址
2025-07-12 15:25:26 +08:00
}
type AMap struct {
Key string
}