Moved push/utils/limits.cljc to push/limits.cljc

This commit is contained in:
Tom Helmuth 2021-11-02 11:23:21 -04:00
parent 39f0f4e30f
commit 0d58508bae
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@
(:require [propeller.utils :as utils] (:require [propeller.utils :as utils]
[propeller.push.state :as state] [propeller.push.state :as state]
[propeller.push.utils.helpers :refer [make-instruction]] [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 #?(:clj [propeller.push.utils.macros :refer [def-instruction
generate-instructions]]))) generate-instructions]])))

View File

@ -1,4 +1,4 @@
(ns propeller.push.utils.limits (ns propeller.push.limits
(:require [propeller.utils :as u])) (:require [propeller.utils :as u]))
;; ============================================================================= ;; =============================================================================

View File

@ -1,5 +1,5 @@
(ns propeller.push.state (ns propeller.push.state
(:require [propeller.push.utils.limits :as l] (:require [propeller.push.limits :as l]
#?(:cljs [goog.string :as gstring]))) #?(:cljs [goog.string :as gstring])))
;; Empty push state - all available stacks are empty ;; Empty push state - all available stacks are empty