all repos

mugit @ dc62a68

🐮 git server that your cow will love
1 files changed, 0 insertions(+), 2 deletions(-)
remove useless todo
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2026-02-13 18:49:23 +0200
Change ID: qymzppxxnxmqnvxtxnpwzpwsopkxvsup
Parent: 0aadda9
M internal/handlers/handlers.go

@@ -39,14 +39,12 @@ mux.HandleFunc("GET /{name}/commit/{ref}", h.commitHandler)

mux.HandleFunc("GET /{name}/refs/{$}", h.refsHandler) mux.HandleFunc("GET /{name}/archive/{ref}", h.archiveHandler) - handler := h.recoverMiddleware(mux) return h.loggingMiddleware(handler) } func (h *handlers) serveStatic(w http.ResponseWriter, r *http.Request) { f := filepath.Clean(r.PathValue("file")) - // TODO: check if files exists http.ServeFileFS(w, r, web.StaticFS, f) }