1
0
Fork 0
forked from glenux/mfm
mfm-demo/src/commands/mapping_create.cr

16 lines
278 B
Crystal

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