aboutsummaryrefslogtreecommitdiff
path: root/src/backend/tau/core.clj
diff options
context:
space:
mode:
authorMiguel Ángel Moreno <mail@migalmoreno.com>2022-12-20 00:38:35 +0100
committerMiguel Ángel Moreno <mail@migalmoreno.com>2022-12-20 00:55:00 +0100
commit25365baa9060769c6df37480916bb5b23fb879fd (patch)
treea1f5eb8708023778cfb91e0129730f8d37e0e673 /src/backend/tau/core.clj
parente71fdc8dbac5c77d6c2fd252f31fc12cd6375e30 (diff)
feat: Set up reitit routes and serve static index
Diffstat (limited to 'src/backend/tau/core.clj')
-rw-r--r--src/backend/tau/core.clj5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/tau/core.clj b/src/backend/tau/core.clj
index 8fb8b07..662f5b9 100644
--- a/src/backend/tau/core.clj
+++ b/src/backend/tau/core.clj
@@ -1,10 +1,11 @@
(ns tau.core
+ (:gen-class)
(:require
- [tau.services.http :as http]))
+ [tau.http :as http]))
(defn -main
[& _]
- (http/start-server! 3000))
+ (http/start-server!))
(defn reset
[]