2024-09-02 14:36:46 +08:00

16 lines
318 B
Go

package domain
type AliyunAccess struct {
AccessKeyId string `json:"accessKeyId"`
AccessKeySecret string `json:"accessKeySecret"`
}
type TencentAccess struct {
SecretId string `json:"secretId"`
SecretKey string `json:"secretKey"`
}
type CloudflareAccess struct {
DnsApiToken string `json:"dnsApiToken"`
}