Class: LayeredStack::Cli::Backend

Inherits:
Thor
  • Object
show all
Defined in:
lib/layered_stack.rb

Overview

Backend commands

Instance Method Summary collapse

Instance Method Details

#createObject



46
47
48
# File 'lib/layered_stack.rb', line 46

def create
  LayeredStack::Backend::Create.execute
end

#create_and_startObject



56
57
58
59
# File 'lib/layered_stack.rb', line 56

def create_and_start
  create
  start
end

#startObject



51
52
53
# File 'lib/layered_stack.rb', line 51

def start
  LayeredStack::Backend::Start.execute
end