reitit 2024-03-03

is it possible to share route data between method routes? ie, both GET /foo and POST /foo should get {:my-flag true}

(def routes
  ["/foo" {:my-flag true
           :get (fn [] ...)
           :post (fn [] ...)}])