class Sfctl::Commands::Time::Connections

Public Instance Methods

add(*) click to toggle source
# File lib/sfctl/commands/time/connections.rb, line 11
def add(*)
  if options[:help]
    invoke :help, ['add']
  else
    require_relative 'connections/add'
    Sfctl::Commands::Time::Connections::Add.new(options).execute
  end
end
get(*) click to toggle source
# File lib/sfctl/commands/time/connections.rb, line 22
def get(*)
  if options[:help]
    invoke :help, ['get']
  else
    require_relative 'connections/get'
    Sfctl::Commands::Time::Connections::Get.new(options).execute
  end
end