mfm/src/commands/global_completion.cr

16 lines
248 B
Crystal
Raw Normal View History

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