class MyManga::CLI::Commands::Remove

See desc

Public Instance Methods

call(name:) click to toggle source
# File lib/my_manga/remove.rb, line 11
def call(name:)
  return unless MyManga.remove(name)

  puts %("#{name}" removed from your library!)
end