feat(ui): allow select dns-01 provider on application

This commit is contained in:
Fu Diwei
2025-03-25 19:52:09 +08:00
parent 51c1b193e5
commit fd8ac3ae37
8 changed files with 67 additions and 33 deletions

View File

@@ -27,6 +27,6 @@ type Uploader interface {
// 表示证书上传结果的数据结构,包含上传后的证书 ID、名称和其他数据。
type UploadResult struct {
CertId string `json:"certId"`
CertName string `json:"certName"`
CertName string `json:"certName,omitzero"`
ExtendedData map[string]any `json:"extendedData,omitempty"`
}