We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f81554e commit 981c316Copy full SHA for 981c316
1 file changed
src/compojure/api/request.clj
@@ -0,0 +1,25 @@
1
+(ns compojure.api.request)
2
+
3
+(def coercion
4
+ "Request-scoped coercion"
5
+ ::coercion)
6
7
+(def swagger
8
+ "Vector of extra swagger data"
9
+ ::swagger)
10
11
+(def ring-swagger
12
+ "Ring-swagger options"
13
+ ::ring-swagger)
14
15
+(def paths
16
+ "Paths"
17
+ ::paths)
18
19
+(def lookup
20
+ "Reverse routing tree"
21
+ ::lookup)
22
23
+(def muuntaja
24
+ "Muuntaja instance"
25
+ ::muuntaja)
0 commit comments