all repos — legit @ ab30497e169cd3bfcd122e668c3cdde6bd48305b

fork of git.icyphox.sh/legit

routes/handler.go

1 2 3 4 5 6 7 8 9 10 11 12 13 14
package routes

import (
	"github.com/alexedwards/flow"
	"icyphox.sh/legit/config"
)

func Handlers(c *config.Config) *flow.Mux {
	mux := flow.New()
	d := deps{c}
	mux.HandleFunc("/:name", d.RepoIndex, "GET")
	mux.HandleFunc("/:name/tree/:ref/...", d.RepoFiles, "GET")
	return mux
}