add default CertConfig

This commit is contained in:
yuzuki999
2023-09-03 02:59:54 +08:00
parent c22efb1917
commit e28a7e00b9
2 changed files with 16 additions and 8 deletions

View File

@@ -10,3 +10,9 @@ type CertConfig struct {
Email string `json:"Email"`
DNSEnv map[string]string `json:"DNSEnv"`
}
func NewCertConfig() *CertConfig {
return &CertConfig{
CertMode: "none",
}
}