mfm/src/commands/mapping_create.cr

21 lines
428 B
Crystal
Raw Normal View History

require "./abstract_command"
module GX::Commands
class MappingCreate < AbstractCommand
2024-08-04 22:58:09 +02:00
def initialize(@config : GX::Config) # FIXME
@config.load_from_env
@config.load_from_file
@file_system_manager = FileSystemManager.new(@config)
end
def execute
# FIXME: implement
2024-08-04 22:58:09 +02:00
puts "mapping create yo!"
end
def self.handles_mode
GX::Types::Mode::MappingCreate
end
end
end