Class: SMPTool::CLI::Commands::Push

Inherits:
VolumeOperation show all
Defined in:
lib/smp_tool/cli/commands/push.rb

Overview

Command to push a file to the volume.

Instance Method Summary collapse

Instance Method Details

#call(input:, f_list:, **options) ⇒ Object



18
19
20
21
22
23
24
25
# File 'lib/smp_tool/cli/commands/push.rb', line 18

def call(input:, f_list:, **options)
  Executor::Pusher.new(
    input: input,
    f_list: f_list,
    logger: _logger(options[:verbosity]),
    **options
  ).call
end