Did anyone use http-kit with reitit and can share the setup code? The setup was working in compojure (run-server #’handler {:port}). when I replace the #’handler with reitit routes they are just ignored.
@merklefabian try (reitit.ring/ring-handler (reitit.ring/router ["/hello" (constantly {:status 200, :body "hello"})]))
as the handler.