Added connect and disconnect stub commands, added autocomplete to help command.

This commit is contained in:
2019-08-11 10:20:05 -05:00
parent 388c43343c
commit 73478b7e37
3 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
class IMICFPS
class Commands
class ConnectCommand < Command
def group
:global
end
def command
:connect
end
def handle(arguments, console)
end
def usage
"Connect to a server.\n#{Style.highlight("connect")} #{Style.notice("[example.com:56789]")}"
end
end
end
end