From 79e32a55801fc53c8d60843c6676ca05cc899299 Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 5 May 2025 21:32:52 +0200 Subject: Initial commit --- src/chef/core.clj | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/chef/core.clj (limited to 'src/chef/core.clj') diff --git a/src/chef/core.clj b/src/chef/core.clj new file mode 100644 index 0000000..86aeb17 --- /dev/null +++ b/src/chef/core.clj @@ -0,0 +1,8 @@ +(ns chef.core + (:require [org.httpkit.server :as http-server] + [chef.routes :as croutes]) + (:gen-class)) + +(defn -main [& args] + (println "Starting http server...") + (http-server/run-server croutes/ring-handler {:port 8080})) -- cgit v1.2.3