mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-13 06:42:35 +00:00
23 lines
379 B
Ruby
23 lines
379 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|