Fix golint errors

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2026-02-02 15:24:11 +01:00
parent b11ce54ccc
commit ece54f1616
38 changed files with 134 additions and 204 deletions

View File

@@ -75,7 +75,7 @@ var (
)
func methodNotAllowed(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
defer func() { _ = r.Body.Close() }()
httpserver.RenderJSON(
w,
@@ -87,7 +87,7 @@ func methodNotAllowed(w http.ResponseWriter, r *http.Request) {
}
func notFound(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
defer func() { _ = r.Body.Close() }()
httpserver.RenderJSON(
w,