Fix lint issues

This commit is contained in:
9seconds
2026-02-24 13:35:06 +01:00
parent e4a9a96309
commit 36c766b331
5 changed files with 6 additions and 8 deletions
@@ -90,7 +90,7 @@ lala 0 0
s.responseHandler = func(w http.ResponseWriter) {
done = true
w.WriteHeader(http.StatusOK)
w.Write([]byte(result))
w.Write([]byte(result)) //nolint: errcheck
}
go s.u.Run(s.ctx, s.srv.URL, "tcp4")
@@ -114,7 +114,7 @@ proxy_for -100 101.10.0.0:3333;
s.responseHandler = func(w http.ResponseWriter) {
done = true
w.WriteHeader(http.StatusOK)
w.Write([]byte(result))
w.Write([]byte(result)) //nolint: errcheck
}
go s.u.Run(s.ctx, s.srv.URL, "tcp4")