keechma

Keechma stack. Mention @U050986L9 or @U2J1PHYNM if you have any questions
2020-07-28T21:46:51.044300Z

@mihaelkonjevic is it possible that app definition in the fourth example:

(def app
  {:keechma/controllers {:counter   {:keechma.controller/params true}
                         :counter-2 {:keechma.controller/params (fn [deps] (even? (:counter deps))
                                                                  :keechma.controller/deps [:counter]}}})
should be like this:
(def app
  {:keechma/controllers {:counter   {:keechma.controller/params true}
                         :counter-2 {:keechma.controller/params (fn [deps] (even? (:counter deps)))
                                     :keechma.controller/deps [:counter]}}})