32 lines
733 B
Go
32 lines
733 B
Go
package api
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"reflect"
|
|
"runtime"
|
|
|
|
"github.com/go-chi/chi"
|
|
)
|
|
|
|
func debugRoutes(r chi.Routes) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, req *http.Request) {
|
|
var printRoutes func(chi.Routes, string)
|
|
|
|
printRoutes = func(r chi.Routes, pfix string) {
|
|
routes := r.Routes()
|
|
for _, route := range routes {
|
|
if route.SubRoutes != nil && len(route.SubRoutes.Routes()) > 0 {
|
|
printRoutes(route.SubRoutes, pfix+route.Pattern[:len(route.Pattern)-2])
|
|
} else {
|
|
for method, fn := range route.Handlers {
|
|
fmt.Fprintf(w, "%-8s %-80s -> %s\n", method, pfix+route.Pattern, runtime.FuncForPC(reflect.ValueOf(fn).Pointer()).Name())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
printRoutes(r, "")
|
|
}
|
|
}
|