14 lines
221 B
Clojure
14 lines
221 B
Clojure
(ns pmagnus.elprice.web.routes.utils)
|
|
|
|
(def route-data-path [:reitit.core/match :data])
|
|
|
|
|
|
(defn route-data
|
|
[req]
|
|
(get-in req route-data-path))
|
|
|
|
|
|
(defn route-data-key
|
|
[req k]
|
|
(get-in req (conj route-data-path k)))
|