aboutsummaryrefslogtreecommitdiff
path: root/src/backend/tau/core.clj
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/tau/core.clj')
-rw-r--r--src/backend/tau/core.clj11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/backend/tau/core.clj b/src/backend/tau/core.clj
new file mode 100644
index 0000000..8fb8b07
--- /dev/null
+++ b/src/backend/tau/core.clj
@@ -0,0 +1,11 @@
+(ns tau.core
+ (:require
+ [tau.services.http :as http]))
+
+(defn -main
+ [& _]
+ (http/start-server! 3000))
+
+(defn reset
+ []
+ (http/stop-server!))