initial commit

This commit is contained in:
2026-07-01 22:38:29 -06:00
commit 9302ad8dce
1662 changed files with 140758 additions and 0 deletions

17
project.clj Normal file
View File

@@ -0,0 +1,17 @@
(defproject il "0.1.0-SNAPSHOT"
:description "Iron Legacy, a browser based sci-fi MMORPG"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.11.1"]
[org.ring-clojure/ring-websocket-async "0.2.0"]
[org.clojure/data.json "2.5.2"]
[compojure "1.7.2"]
[hiccup "2.0.0"]
[org.slf4j/slf4j-simple "2.0.16"]
[org.clojure/data.json "2.5.2"]
[ring/ring-core "1.15.4"]
[ring/ring-jetty-adapter "1.15.4"]
[org.clojure/core.async "1.9.865"]]
:main il.core
:repl-options {:init-ns il.core})