10 lines
205 B
Ruby
10 lines
205 B
Ruby
# typed: true
|
|
class Domain::Inkbunny::Job::Base < Scraper::JobBase
|
|
discard_on ActiveJob::DeserializationError
|
|
queue_as :inkbunny
|
|
|
|
def self.http_factory_method
|
|
:get_inkbunny_http_client
|
|
end
|
|
end
|