如何在处理程序函数中列出所有路由?我正在寻找类似于rails'rake routes
的行为。例如:
(defroutes foo-routes
(GET "/foo/:foo-id"
[foo-id]
"bar response")
(GET "/bar/:bar-id"
[bar-id]
"foo response"))
那么可以从包含以下内容的foo-bar路线中提取地图吗?
{:GET "/foo/:foo-id"
:GET "/bar/:bar-id"}