geocsv/env/dev/cljs/geocsv/app.cljs
Simon Brooke ce7b204a19
#6: Automatic pan and zoom on loading data now works
Additionally, all client namespaces have been renamed to geocsv.client.xxx to avoid confusion with server side namespaces.
2020-01-29 19:05:34 +00:00

20 lines
404 B
Clojure

(ns^:figwheel-no-load geocsv.app
(:require
[geocsv.client.core :as core]
[cljs.spec.alpha :as s]
[expound.alpha :as expound]
[devtools.core :as devtools]))
(extend-protocol IPrintWithWriter
js/Symbol
(-pr-writer [sym writer _]
(-write writer (str "\"" (.toString sym) "\""))))
(set! s/*explain-out* expound/printer)
(enable-console-print!)
(devtools/install!)
(core/init!)