From a07415f7fe29c7cd38ccd01f2265557f9ce77a64 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 28 Jul 2024 17:33:50 +0200 Subject: [PATCH] fixup! chore: switch to go-chi Fix routing --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 8ba5e6e..d7faa8f 100644 --- a/main.go +++ b/main.go @@ -54,7 +54,7 @@ func main() { r.Get("/", indexHandler) r.Get("/healthz", healthzHandler) r.Get("/robots.txt", robotsHandler) - r.Get(unpack.MountPath, unpack.Handler) + r.Get(unpack.MountPath+"*", unpack.Handler) log.Println("addr=", addr) log.Fatal(http.ListenAndServe(addr, r))