(ns horizon.common.utils.coeffects.factories
  (:require
   [horizon.common.utils.coeffects.core :as coeffects]))

(defn om-state [owner kws]
  (coeffects/->OmState owner kws))

(defn arbitrary-fn [kw func]
  (coeffects/->ArbitraryFunction kw func))

(defn app-state [lenses]
  (coeffects/->AppState lenses))