feat: start implementing MappingCreate
This commit is contained in:
parent
65fe1bf0b9
commit
df89dd3dfa
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue