# frozen_string_literal: true class IqdbRemoveJob < ApplicationJob queue_as :iqdb def perform(id) Iqdb.remove_image(id) end end