Hey can anyone suggest a way to keep compojure-api routes and legacy compojure framework routes side by side?
I am trying to do that but they don't seem to work well together.. The one overrides the other...
@andreasp1994 maybe:
(require '[compojure.api.sweet :refer :all]
'[compojure.core :as c])
(def app1 (api (GET ...)))
(def app2 (c/routes (c/GET ...)))
@ikitommi Thanks will try it out!