Remove unused code

This commit is contained in:
2025-03-20 18:34:28 +01:00
parent e4327cd3a8
commit 3a5fa290e2
11 changed files with 3 additions and 349 deletions

View File

@@ -40,7 +40,7 @@ func (s *Server) serveIndex(frontendDir string) http.HandlerFunc {
defer f.Close()
if _, err := io.Copy(w, f); err != nil {
s.ServerLogger.Warnw("Error writing frontend to client.", "err", err)
s.ServerLogger.Warn("Error writing frontend to client.", "err", err)
}
}
return fn