remove dead code
Alan Pearce alan@alanpearce.eu
Thu, 03 Apr 2025 17:34:28 +0200
1 files changed, 0 insertions(+), 11 deletions(-)
jump to
M routes/handler.go → routes/handler.go
@@ -3,10 +3,7 @@ import ( "log" "net/http" - "os" "path" - "slices" - "strings" "github.com/dimfeld/httptreemux/v5" @@ -66,14 +63,6 @@ d := deps{ c, projects, } - - categories := []string{} - for _, project := range projects { - if cat, _, found := strings.Cut(project, string(os.PathSeparator)); found { - categories = append(categories, cat) - } - } - categories = slices.Compact(categories) mux.NotFoundHandler = func(w http.ResponseWriter, r *http.Request) { d.Write404(w)