feat: main entry point
All checks were successful
build / build (push) Successful in 23s

This commit is contained in:
2026-04-18 18:33:28 -06:00
parent ac1c0eacd9
commit 7e6fb22d03

View File

@@ -1,5 +1,8 @@
(ns net.deertopia.doerg.main (ns net.deertopia.doerg.main
(:require [net.deertopia.doerg.server :as server]
[net.deertopia.doerg.config :as cfg])
(:gen-class)) (:gen-class))
(defn -main [] (defn -main [& _]
(println "hello from doerg")) (binding [cfg/*cfg* (cfg/read-config cfg/sources)]
(server/start!)))