mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 13:39:53 +00:00
25 lines
484 B
Go
25 lines
484 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"`
|
|
}
|
|
|
|
type QiniuAccess struct {
|
|
AccessKey string `json:"accessKey"`
|
|
SecretKey string `json:"secretKey"`
|
|
}
|
|
|
|
type NameSiloAccess struct {
|
|
ApiKey string `json:"apiKey"`
|
|
}
|