env.clj 174 B

12345678
  1. (ns hello.env
  2. (:require [clojure.tools.logging :as log]))
  3. (def defaults
  4. {:init
  5. (fn []
  6. (log/info "\n-=[hello started successfully]=-"))
  7. :middleware identity})