summaryrefslogblamecommitdiffstats
path: root/routes/handler.go
blob: 2625b438ce3ee458fd59d179d21f51ad0ae0db0c (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                           
                                                    

                                                                    
                                                       
                                                           

                  
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.RepoTree, "GET")
	mux.HandleFunc("/:name/blob/:ref/...", d.FileContent, "GET")
	mux.HandleFunc("/:name/log/:ref", d.Log, "GET")
	mux.HandleFunc("/:name/commit/:ref", d.Diff, "GET")
	return mux
}