runtime args should init to {}

This commit is contained in:
anatoly 2016-02-28 00:02:42 -05:00
parent a1e8e9c8e0
commit d5eb56c422

View file

@ -9,7 +9,7 @@
#?(:cljs (:require-macros [mount.core]
[mount.tools.macro :refer [if-clj on-error throw-runtime]])))
(defonce ^:private -args (atom :no-args)) ;; mostly for command line args and external files
(defonce ^:private -args (atom {})) ;; mostly for command line args and external files
(defonce ^:private state-seq (atom 0))
(defonce ^:private mode (atom :clj))
(defonce ^:private meta-state (atom {}))