Skip to content

Commit

Permalink
add missing require
Browse files Browse the repository at this point in the history
  • Loading branch information
frenchy64 committed Aug 30, 2024
1 parent 94ce172 commit bc4e1ab
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/compojure/api/meta.cljc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
(ns compojure.api.meta
(:require [compojure.api.common :as common :refer [extract-parameters]]
(:require [clojure.walk :as walk]
[compojure.api.common :as common :refer [extract-parameters]]
[compojure.api.middleware :as mw]
[compojure.api.routes :as routes]
[plumbing.core :as p]
Expand Down Expand Up @@ -247,7 +248,7 @@
(fnk-impl/ensure-schema-metadata &env bind-form)
[]
cur-body-form)
body-form (clojure.walk/prewalk-replace {'plumbing.fnk.schema/safe-get 'clojure.core/get} body-form)]
body-form (walk/prewalk-replace {'plumbing.fnk.schema/safe-get 'clojure.core/get} body-form)]
`(let [~map-sym nil] ~body-form))))
`(do ~@body)
(reverse (partition 2 bindings))))
Expand Down

0 comments on commit bc4e1ab

Please sign in to comment.