legit/routes/handler.go

15 lines
283 B
Go
Raw Normal View History

2022-12-11 05:52:47 +00:00
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")
2022-12-11 05:52:47 +00:00
return mux
}