1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-24 15:49:39 +02:00
Maybe/app/jobs/sync_job.rb

8 lines
106 B
Ruby
Raw Normal View History

class SyncJob < ApplicationJob
queue_as :latency_medium
def perform(sync)
sync.perform
end
end