forked from glenux/mfm
16 lines
248 B
Crystal
16 lines
248 B
Crystal
|
require "./abstract_command"
|
||
|
|
||
|
module GX::Commands
|
||
|
class GlobalCompletion < AbstractCommand
|
||
|
def initialize(@config : GX::Config)
|
||
|
end
|
||
|
|
||
|
def execute
|
||
|
end
|
||
|
|
||
|
def self.handles_mode
|
||
|
GX::Types::Mode::GlobalConfig
|
||
|
end
|
||
|
end
|
||
|
end
|