aboutsummaryrefslogtreecommitdiff
path: root/pkg/handler/router.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/handler/router.go')
-rw-r--r--pkg/handler/router.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/handler/router.go b/pkg/handler/router.go
index a8c9c6f..1150f2f 100644
--- a/pkg/handler/router.go
+++ b/pkg/handler/router.go
@@ -33,6 +33,7 @@ func MountHandler(
mux.Handle("/static/", staticHandler)
mux.HandleFunc("/config", configHander)
mux.HandleFunc("/about", aboutHandler.About)
+ mux.HandleFunc("/{name}", gitHandler.Item)
mux.HandleFunc("/", gitHandler.List)
return mux, nil
}