From 25365baa9060769c6df37480916bb5b23fb879fd Mon Sep 17 00:00:00 2001 From: Miguel Ángel Moreno Date: Tue, 20 Dec 2022 00:38:35 +0100 Subject: feat: Set up reitit routes and serve static index --- src/backend/tau/core.clj | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/backend/tau/core.clj') 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 [] -- cgit v1.2.3