mfm/src/commands/global_config.cr
Glenn Y. Rolland bb5941a86a
Some checks failed
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is passing
fix: remove useless FIXME comments
2024-01-24 00:06:52 +01:00

16 lines
243 B
Crystal

require "./abstract_command"
module GX::Commands
class GlobalConfig < AbstractCommand
def initialize(config : GX::Config)
end
def execute
end
def self.handles_mode
GX::Types::Mode::GlobalConfig
end
end
end