routes/handler.go (view raw)
1package routes
2
3import (
4 "github.com/alexedwards/flow"
5 "icyphox.sh/legit/config"
6)
7
8func Handlers(c *config.Config) *flow.Mux {
9 mux := flow.New()
10 d := deps{c}
11 mux.HandleFunc("/:name", d.RepoIndex, "GET")
12 mux.HandleFunc("/:name/tree/:ref/...", d.RepoFiles, "GET")
13 return mux
14}