Fix golangci-lint errcheck and unused errors
CI / test (push) Failing after 12m57s

- manager.go: add _ = to syscall.Kill and proc.Signal calls (6 fixes)
- chat.go: add _ = to c.Writer.WriteString calls (9 fixes)
- webhook.go: remove unused webhookSecret field
This commit is contained in:
2026-07-30 17:20:34 -04:00
parent e9c81f7c30
commit f775c2f67e
3 changed files with 17 additions and 18 deletions
+2 -3
View File
@@ -30,9 +30,8 @@ type WebhookPayload struct {
}
type WebhookService struct {
db *gorm.DB
client *http.Client
webhookSecret string
db *gorm.DB
client *http.Client
}
func NewWebhookService(db *gorm.DB) *WebhookService {