From 590c57c18db9a4b1c1efaa75cd43b86ff803f4e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Moya?= Date: Wed, 2 Dec 2020 15:32:58 +0100 Subject: [PATCH] :bugfix: Add require macros --- common/app/common/exceptions.cljc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/app/common/exceptions.cljc b/common/app/common/exceptions.cljc index 8f74d09225..69885361bb 100644 --- a/common/app/common/exceptions.cljc +++ b/common/app/common/exceptions.cljc @@ -6,6 +6,8 @@ (ns app.common.exceptions "A helpers for work with exceptions." + #?(:cljs + (:require-macros [app.common.exceptions])) (:require [clojure.spec.alpha :as s])) (s/def ::type keyword?)