mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-05 21:45:23 +02:00
7 lines
106 B
Ruby
7 lines
106 B
Ruby
class SyncJob < ApplicationJob
|
|
queue_as :latency_medium
|
|
|
|
def perform(sync)
|
|
sync.perform
|
|
end
|
|
end
|