From 0d58508baede41c408777176f97264b4977936d1 Mon Sep 17 00:00:00 2001 From: Tom Helmuth Date: Tue, 2 Nov 2021 11:23:21 -0400 Subject: [PATCH] Moved push/utils/limits.cljc to push/limits.cljc --- src/propeller/push/instructions/polymorphic.cljc | 2 +- src/propeller/push/{utils => }/limits.cljc | 2 +- src/propeller/push/state.cljc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename src/propeller/push/{utils => }/limits.cljc (98%) 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