is it possible to share route data between method routes? ie, both GET /foo and POST /foo should get {:my-flag true}
GET /foo
POST /foo
{:my-flag true}
thanks!
(def routes ["/foo" {:my-flag true :get (fn [] ...) :post (fn [] ...)}])