refactor: clean code

This commit is contained in:
Fu Diwei
2024-11-04 12:54:23 +08:00
parent 269a97e81e
commit 34daf9ccac
4 changed files with 16 additions and 16 deletions

View File

@@ -6,10 +6,10 @@ type BaseResponse struct {
}
type UploadSslCertRequest struct {
Name string `json:"name"`
CommonName string `json:"common_name"`
Pri string `json:"pri"`
Ca string `json:"ca"`
Name string `json:"name"`
CommonName string `json:"common_name"`
Certificate string `json:"ca"`
PrivateKey string `json:"pri"`
}
type UploadSslCertResponse struct {