RUBYCRITIC
# frozen_string_literal: true
class Accounts::Contacts::Events::WoofbotWorker - Accounts::Contacts::Events::WoofbotWorker has no descriptive comment
include Sidekiq::Worker
def perform(event_id) - Accounts::Contacts::Events::WoofbotWorker#perform doesn't depend on instance state (maybe move it to another class?)
event = Event.find(event_id)
Accounts::Contacts::Events::Woofbot.new(event).call
end
end