feat: new deployment provider: wangsu certificate management

This commit is contained in:
Fu Diwei
2025-05-19 23:49:06 +08:00
parent c9e6bd0c2f
commit e6fc92eccb
27 changed files with 627 additions and 27 deletions

View File

@@ -14,6 +14,7 @@ func (c *Client) ensureAccessTokenExists() error {
}
req := &loginRequest{
Email: c.username,
Username: c.username,
Password: c.password,
}

View File

@@ -19,6 +19,7 @@ func (r *baseResponse) GetMessage() string {
}
type loginRequest struct {
Email string `json:"email"`
Username string `json:"username"`
Password string `json:"password"`
}