Skip to content

Commit 981c316

Browse files
committed
backport src/compojure/api/request.clj
1 parent f81554e commit 981c316

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

src/compojure/api/request.clj

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)