From 5698c8861b088c4a7bb17a04724f285684446091 Mon Sep 17 00:00:00 2001 From: Tommi Reiman Date: Sat, 8 Sep 2018 10:57:32 +0300 Subject: [PATCH] doc the new module --- README.md | 2 ++ doc/README.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 7d1fb353..caba4687 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,7 @@ There is [#reitit](https://clojurians.slack.com/messages/reitit/) in [Clojurians * `reitit-swagger-ui` Integrated [Swagger UI](https://github.com/swagger-api/swagger-ui) * `reitit-frontend` Tools for [frontend routing]((https://metosin.github.io/reitit/frontend/basics.html)) * `reitit-http` http-routing with Pedestal-style Interceptors +* `reitit-interceptors` - [common interceptors](https://metosin.github.io/reitit/http/default_interceptors.html) for `reitit-http` * `reitit-sieppari` support for [Sieppari](https://github.com/metosin/sieppari) Interceptors ## Latest version @@ -65,6 +66,7 @@ Optionally, the parts can be required separately: ;; http with interceptors [metosin/reitit-http "0.2.1"] +[metosin/reitit-interceptors "0.2.1"] [metosin/reitit-sieppari "0.2.1"] ``` diff --git a/doc/README.md b/doc/README.md index 0f617593..df302c01 100644 --- a/doc/README.md +++ b/doc/README.md @@ -24,6 +24,7 @@ Modules: * `reitit-swagger-ui` Integrated [Swagger UI](https://github.com/swagger-api/swagger-ui). * `reitit-frontend` Tools for [frontend routing](frontend/basics.md) * `reitit-http` http-routing with Pedestal-style Interceptors +* `reitit-interceptors` - [common interceptors](./http/default_interceptors.md) for `reitit-http` * `reitit-sieppari` support for [Sieppari](https://github.com/metosin/sieppari) Interceptors ## Latest version @@ -56,6 +57,7 @@ Optionally, the parts can be required separately: ;; http with interceptors [metosin/reitit-http "0.2.1"] +[metosin/reitit-interceptors "0.2.1"] [metosin/reitit-sieppari "0.2.1"] ```