diff options
author | Miguel Ángel Moreno <mail@migalmoreno.com> | 2022-12-20 00:38:35 +0100 |
---|---|---|
committer | Miguel Ángel Moreno <mail@migalmoreno.com> | 2022-12-20 00:55:00 +0100 |
commit | 25365baa9060769c6df37480916bb5b23fb879fd (patch) | |
tree | a1f5eb8708023778cfb91e0129730f8d37e0e673 /src/backend/tau/core.clj | |
parent | e71fdc8dbac5c77d6c2fd252f31fc12cd6375e30 (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.clj | 5 |
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 [] |