lib/download_tv/subtitles.rb



# frozen_string_literal: true

module DownloadTV
  ##
  # Manages the subtitles (WIP)
  class Subtitles
    def initialize
      @a = Addic7ed.new
    end

    def get_subs(show)
      @a.get_subs(show)
    rescue NoSubtitlesError
      puts "No subtitles found for #{show}"
    end
  end
end