Merge pull request #315 from fudiwei/bugfix/qiniu-panic

bugfix #304
main
usual2970 2024-11-08 08:09:41 +08:00 committed by GitHub
commit 9aa17a0395
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ type DomainInfoHttpsData struct {
}
type GetDomainInfoResponse struct {
*BaseResponse
BaseResponse
Name string `json:"name"`
Type string `json:"type"`
CName string `json:"cname"`
@ -42,7 +42,7 @@ type ModifyDomainHttpsConfRequest struct {
}
type ModifyDomainHttpsConfResponse struct {
*BaseResponse
BaseResponse
}
type EnableDomainHttpsRequest struct {
@ -50,5 +50,5 @@ type EnableDomainHttpsRequest struct {
}
type EnableDomainHttpsResponse struct {
*BaseResponse
BaseResponse
}