We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Routes can be nested using the context macro:
(defroutes main-routes (context "/api" [] api-routes) other-routes) (defroutes api-routes (GET "/something" [] ...)) ; matches /api/something