feat: start implementing MappingCreate

This commit is contained in:
Glenn Y. Rolland 2024-08-04 22:58:09 +02:00
parent 65fe1bf0b9
commit df89dd3dfa

View file

@ -2,11 +2,15 @@ require "./abstract_command"
module GX::Commands module GX::Commands
class MappingCreate < AbstractCommand class MappingCreate < AbstractCommand
def initialize(config : GX::Config) # FIXME def initialize(@config : GX::Config) # FIXME
@config.load_from_env
@config.load_from_file
@file_system_manager = FileSystemManager.new(@config)
end end
def execute def execute
# FIXME: implement # FIXME: implement
puts "mapping create yo!"
end end
def self.handles_mode def self.handles_mode