Exclude chain

This commit is contained in:
Tommi Reiman 2017-12-26 22:42:12 +02:00
parent 1a9583b31b
commit 388de03ead

View file

@ -10,6 +10,7 @@
; ;
; You must not remove this notice, or any other, from this software. ; You must not remove this notice, or any other, from this software.
(comment
(ns reitit.chain (ns reitit.chain
"Interceptor pattern. Executes a chain of Interceptor functions on a "Interceptor pattern. Executes a chain of Interceptor functions on a
common \"context\" map, maintaining a virtual \"stack\", with error common \"context\" map, maintaining a virtual \"stack\", with error
@ -378,3 +379,4 @@
context))) context)))
([context interceptors] ([context interceptors]
(execute (enqueue context interceptors)))) (execute (enqueue context interceptors))))
)