This commit is contained in:
2025-03-21 20:44:35 +08:00
parent bac4fd8b11
commit 8cede57a70
21 changed files with 430 additions and 120 deletions

View File

@ -16,11 +16,11 @@ type Extend struct {
EmailConfig EmailConfig `mapstructure:"emailConfig"`
BinanceSet BinanceConfig `mapstructure:"binanceSet"` //binance配置
Domain string //网站域名
GoToneSmsConfig GoToneSmsConfig `mapstructure:"GoToneSmsConfig"`
UDunConfig UDunConfig `mapstructure:"UDunConfig"`
ProxyUrl string //代理地址
CoinGate CoinGateConfig `mapstructure:"coingate"` //coingate钱包
GoToneSmsConfig GoToneSmsConfig `mapstructure:"GoToneSmsConfig"`
InnoPaas InnoPaasConfig `mapstructure:"innoPaas"` //创蓝短信
}
type CoinGateConfig struct {
@ -70,6 +70,12 @@ type GoToneSmsConfig struct {
Authorization string `json:"authorization"`
}
type InnoPaasConfig struct {
Url string `json:"url"`
ApiKey string `json:"apiKey"`
Password string `json:"password"`
}
type UDunConfig struct {
UDunUrl string `json:"UDunUrl"`
UDunMerchantID string `json:"UDunMerchantID"`