mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-11 18:05:59 +08:00
23 lines
459 B
Go
23 lines
459 B
Go
package response
|
|
|
|
import "github.com/1Panel-dev/1Panel/backend/app/model"
|
|
|
|
type WebsiteSSLDTO struct {
|
|
model.WebsiteSSL
|
|
}
|
|
|
|
type WebsiteDNSRes struct {
|
|
Key string `json:"resolve"`
|
|
Value string `json:"value"`
|
|
Domain string `json:"domain"`
|
|
Err string `json:"err"`
|
|
}
|
|
|
|
type WebsiteAcmeAccountDTO struct {
|
|
model.WebsiteAcmeAccount
|
|
}
|
|
|
|
type WebsiteDnsAccountDTO struct {
|
|
model.WebsiteDnsAccount
|
|
Authorization map[string]string `json:"authorization"`
|
|
}
|