mirror of
https://github.com/metosin/reitit.git
synced 2025-12-17 08:21:11 +00:00
16 lines
246 B
Clojure
16 lines
246 B
Clojure
|
|
(ns user
|
||
|
|
(:require
|
||
|
|
[integrant.repl :as ig-repl]
|
||
|
|
[example.server]))
|
||
|
|
|
||
|
|
(ig-repl/set-prep! (constantly example.server/system-config))
|
||
|
|
|
||
|
|
(def go ig-repl/go)
|
||
|
|
(def halt ig-repl/halt)
|
||
|
|
(def reset ig-repl/reset)
|
||
|
|
|
||
|
|
(comment
|
||
|
|
(go)
|
||
|
|
(reset)
|
||
|
|
(halt))
|