Skip to content

Commit

Permalink
fixup! chore: switch to go-chi
Browse files Browse the repository at this point in the history
Fix routing
  • Loading branch information
zimbatm committed Jul 28, 2024
1 parent 724b09b commit a07415f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit a07415f

Please sign in to comment.