You have to add the :private true metadata key value pair.
(def ^{:private true} some-var :value)
;; or
(def ^:private some-var :value)
The second form is just a short-hand for the first one.
You have to add the :private true metadata key value pair.
(def ^{:private true} some-var :value)
;; or
(def ^:private some-var :value)
The second form is just a short-hand for the first one.