mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-14 11:37:29 +08:00
24 lines
459 B
Go
24 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"`
|
||
|
}
|