ShapeyShifty/src/clj/shapey_shifty/config.clj

14 lines
260 B
Clojure
Raw Permalink Normal View History

2020-01-06 18:57:10 +00:00
(ns shapey-shifty.config
(:require
2020-01-28 00:35:03 +00:00
[cprop.core :refer [load-config]]
[cprop.source :as source]
[mount.core :refer [args defstate]]))
2020-01-06 18:57:10 +00:00
(defstate env
:start
(load-config
2020-01-28 00:35:03 +00:00
:merge
[(args)
(source/from-system-props)
(source/from-env)]))