13 lines
188 B
Clojure
13 lines
188 B
Clojure
(ns ireadit.figwheel
|
|
(:require [figwheel-sidecar.repl-api :as ra]))
|
|
|
|
(defn start-fw []
|
|
(ra/start-figwheel!))
|
|
|
|
(defn stop-fw []
|
|
(ra/stop-figwheel!))
|
|
|
|
(defn cljs []
|
|
(ra/cljs-repl))
|
|
|