feat: main entry point
build / build (push) Successful in 23s

This commit is contained in:
2026-04-18 18:33:28 -06:00
parent ac1c0eacd9
commit 7e6fb22d03
+5 -2
View File
@@ -1,5 +1,8 @@
(ns net.deertopia.doerg.main
(:require [net.deertopia.doerg.server :as server]
[net.deertopia.doerg.config :as cfg])
(:gen-class))
(defn -main []
(println "hello from doerg"))
(defn -main [& _]
(binding [cfg/*cfg* (cfg/read-config cfg/sources)]
(server/start!)))