fix: resolve lint issues for make check compliance

This commit is contained in:
clawbot
2026-02-19 23:43:41 -08:00
parent a891fb2489
commit e73409b567
11 changed files with 142 additions and 26 deletions

View File

@@ -76,7 +76,7 @@ func deploymentToAPI(d *models.Deployment) apiDeploymentResponse {
func (h *Handlers) HandleAPILoginPOST() http.HandlerFunc {
type loginRequest struct {
Username string `json:"username"`
Password string `json:"password"`
Password string `json:"password"` //nolint:gosec // request field, not a hardcoded credential
}
type loginResponse struct {