FG42/john_titor/src/john_titor/commands/protocols.cljs

9 lines
223 B
Clojure

(ns john-titor.commands.protocols)
(defn defcommand [server command-name f]
(.defineMethod server command-name f))
(defprotocol CommandRouter
(init [_ server]
"Define all the commands using the given `server`."))