Skip to content

Commit a39bb4b

Browse files
committed
Main: fix server starting
1 parent b16519d commit a39bb4b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/hyperspace/main.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
(ns hyperspace.main
22
(:require [hyperspace.client.main :as client]
3-
[hyperspace.server.main :as server]))
3+
[hyperspace.server.server :as server]))
44

55
(defn -main [application & args]
66
(cond
77
(= application "client") (apply client/run args)
8-
(= application "server") (apply server/run args)))
8+
(= application "server") (apply server/start args)))

0 commit comments

Comments
 (0)