all repos — legit @ e0f34796a37666058dce61277bc546add707fb2e

web frontend for git

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.RepoTree, "GET")
13	mux.HandleFunc("/:name/blob/:ref/...", d.FileContent, "GET")
14	return mux
15}