mfm/src/commands/global_config.cr

16 lines
243 B
Crystal
Raw Normal View History

require "./abstract_command"
module GX::Commands
class GlobalConfig < AbstractCommand
2024-01-23 23:06:52 +00:00
def initialize(config : GX::Config)
end
def execute
end
def self.handles_mode
GX::Types::Mode::GlobalConfig
end
end
end