Files
eth_transfer_go/config/extend.go

22 lines
355 B
Go
Raw Normal View History

2025-05-12 14:49:01 +08:00
package config
var ExtConfig Extend
// Extend 扩展配置
2025-05-13 15:44:44 +08:00
//
// extend:
// demo:
// name: demo-name
//
2025-05-12 14:49:01 +08:00
// 使用方法: config.ExtConfig......即可!!
type Extend struct {
2025-05-13 15:44:44 +08:00
AMap AMap // 这里配置对应配置文件的结构即可
ApiEndpoint string //rpc api地址
ProxyUrl string //代理地址
2025-05-12 14:49:01 +08:00
}
type AMap struct {
Key string
}