We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b16519d commit a39bb4bCopy full SHA for a39bb4b
1 file changed
src/hyperspace/main.clj
@@ -1,8 +1,8 @@
1
(ns hyperspace.main
2
(:require [hyperspace.client.main :as client]
3
- [hyperspace.server.main :as server]))
+ [hyperspace.server.server :as server]))
4
5
(defn -main [application & args]
6
(cond
7
(= application "client") (apply client/run args)
8
- (= application "server") (apply server/run args)))
+ (= application "server") (apply server/start args)))
0 commit comments