RUBYCRITIC
class Accounts::Apps::Chatwoots::SyncChatwootWorker - Accounts::Apps::Chatwoots::SyncChatwootWorker has no descriptive comment
include Sidekiq::Worker
sidekiq_options queue: :chatwoot_webhooks
def perform(account_id, chatwoot_id) - Accounts::Apps::Chatwoots::SyncChatwootWorker#perform doesn't depend on instance state (maybe move it to another class?)
chatwoot = Apps::Chatwoot.find(chatwoot_id)
account = Account.find(account_id)
Accounts::Apps::Chatwoots::SyncImportContacts.new(chatwoot).call
Accounts::Apps::Chatwoots::SyncExportContacts.call(account)
end
end