mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-13 07:59:52 +00:00
20 lines
584 B
Go
20 lines
584 B
Go
package domain
|
|
|
|
// Deprecated: TODO: 即将废弃
|
|
type ApplyConfig struct {
|
|
Email string `json:"email"`
|
|
Access string `json:"access"`
|
|
KeyAlgorithm string `json:"keyAlgorithm"`
|
|
Nameservers string `json:"nameservers"`
|
|
PropagationTimeout int64 `json:"propagationTimeout"`
|
|
DisableFollowCNAME bool `json:"disableFollowCNAME"`
|
|
}
|
|
|
|
// Deprecated: TODO: 即将废弃
|
|
type DeployConfig struct {
|
|
Id string `json:"id"`
|
|
Access string `json:"access"`
|
|
Type string `json:"type"`
|
|
Config map[string]any `json:"config"`
|
|
}
|