func listRoutes()

in pkg/server/httpserver.go [86:95]


func listRoutes() {
	router.Walk(func(route *mux.Route, r *mux.Router, ancestors []*mux.Route) error {
		t, err := route.GetPathTemplate()
		if err != nil {
			return err
		}
		Routes = append(Routes, t)
		return nil
	})
}