WIP: feature/1-add-support-for-fs-crud #47

Draft
glenux wants to merge 27 commits from feature/1-add-support-for-fs-crud into develop
Showing only changes of commit df89dd3dfa - Show all commits

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