Class: SMPTool::CLI::Commands::Delete

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

Overview

Delete file(s) from the volume.

Instance Method Summary collapse

Instance Method Details

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



25
26
27
28
29
30
31
32
# File 'lib/smp_tool/cli/commands/delete.rb', line 25

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