mirror of
https://github.com/status-im/open-bounty.git
synced 2025-01-12 10:34:30 +00:00
15 lines
312 B
Clojure
15 lines
312 B
Clojure
(ns user
|
|
(:require [mount.core :as mount]
|
|
[commiteth.figwheel :refer [start-fw stop-fw cljs]]
|
|
commiteth.core))
|
|
|
|
(defn start []
|
|
(mount/start-without #'commiteth.core/repl-server))
|
|
|
|
(defn stop []
|
|
(mount/stop-except #'commiteth.core/repl-server))
|
|
|
|
(defn restart []
|
|
(stop)
|
|
(start))
|