mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 20:52:33 +02:00
13 lines
437 B
Go
13 lines
437 B
Go
package model
|
|
|
|
type (
|
|
AutoCertConfig struct {
|
|
Email string `json:"email"`
|
|
Domains []string `yaml:",flow" json:"domains"`
|
|
CertPath string `yaml:"cert_path" json:"cert_path"`
|
|
KeyPath string `yaml:"key_path" json:"key_path"`
|
|
Provider string `json:"provider"`
|
|
Options AutocertProviderOpt `yaml:",flow" json:"options"`
|
|
}
|
|
AutocertProviderOpt map[string]any
|
|
)
|