diff options
author | Anirudh Oppiliappan <x@icyphox.sh> | 2022-12-12 21:58:47 +0530 |
---|---|---|
committer | Anirudh Oppiliappan <x@icyphox.sh> | 2022-12-12 21:58:47 +0530 |
commit | 7a6ff3565e8e5f55d50c509c9ee12438b61c850e (patch) | |
tree | 58d609ef2fba68fb82bd0e8a47d6c98692361f6e /routes/handler.go | |
parent | 01f27147baf80e2222927ddca9369c7d99b4ff3c (diff) | |
download | legit-7a6ff3565e8e5f55d50c509c9ee12438b61c850e.tar.gz legit-7a6ff3565e8e5f55d50c509c9ee12438b61c850e.tar.bz2 legit-7a6ff3565e8e5f55d50c509c9ee12438b61c850e.zip |
routes: refs view
Diffstat (limited to 'routes/handler.go')
-rw-r--r-- | routes/handler.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/routes/handler.go b/routes/handler.go index 0c4f7b8..3abc4fd 100644 --- a/routes/handler.go +++ b/routes/handler.go @@ -21,5 +21,6 @@ func Handlers(c *config.Config) *flow.Mux { mux.HandleFunc("/:name/blob/:ref/...", d.FileContent, "GET") mux.HandleFunc("/:name/log/:ref", d.Log, "GET") mux.HandleFunc("/:name/commit/:ref", d.Diff, "GET") + mux.HandleFunc("/:name/refs", d.Refs, "GET") return mux } |