all repos — legit @ 6857a2f002358c47f588c8417482a5afd01725d0

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.RepoFiles, "GET")
13	return mux
14}