diff --git a/src/propeller/push/instructions/polymorphic.cljc b/src/propeller/push/instructions/polymorphic.cljc index 4635cc4..8f0c113 100755 --- a/src/propeller/push/instructions/polymorphic.cljc +++ b/src/propeller/push/instructions/polymorphic.cljc @@ -5,7 +5,7 @@ (:require [propeller.utils :as utils] [propeller.push.state :as state] [propeller.push.utils.helpers :refer [make-instruction]] - [propeller.push.utils.limits :as limit] + [propeller.push.limits :as limit] #?(:clj [propeller.push.utils.macros :refer [def-instruction generate-instructions]]))) diff --git a/src/propeller/push/utils/limits.cljc b/src/propeller/push/limits.cljc similarity index 98% rename from src/propeller/push/utils/limits.cljc rename to src/propeller/push/limits.cljc index 1e4c7c4..611b13e 100644 --- a/src/propeller/push/utils/limits.cljc +++ b/src/propeller/push/limits.cljc @@ -1,4 +1,4 @@ -(ns propeller.push.utils.limits +(ns propeller.push.limits (:require [propeller.utils :as u])) ;; ============================================================================= diff --git a/src/propeller/push/state.cljc b/src/propeller/push/state.cljc index 921e2eb..c211198 100755 --- a/src/propeller/push/state.cljc +++ b/src/propeller/push/state.cljc @@ -1,5 +1,5 @@ (ns propeller.push.state - (:require [propeller.push.utils.limits :as l] + (:require [propeller.push.limits :as l] #?(:cljs [goog.string :as gstring]))) ;; Empty push state - all available stacks are empty