A router Duct framework that uses Reitit. This library is also compatible with Integrant.
Add the following dependency to your deps.edn file:
org.duct-framework/router.reitit {:mvn/version "0.1.0"}
Or to your Leiningen project file:
[org.duct-framework/router.reitit "0.1.0"]
Add the :duct.router/reitit
key to your Duct (or Integrant)
configuration:
{:duct.router/reitit
{:routes ["/" {:get #ig/ref :example.handler/root}]}
:example.handler/root {}}
The :routes
option defines the Reitit routes. Other options are
passed directly to the Reitit router.
Once initiated the :duct.router/reitit
key will produce a Ring
handler.
Copyright © 2024 James Reeves
Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close