aboutsummaryrefslogtreecommitdiff
path: root/src/backend/tau/core.clj
blob: 8fb8b07176d8316fc2be4f52e5c8a0bdccb07abe (plain)
1
2
3
4
5
6
7
8
9
10
11
(ns tau.core
  (:require
   [tau.services.http :as http]))

(defn -main
  [& _]
  (http/start-server! 3000))

(defn reset
  []
  (http/stop-server!))