mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-06 22:15:20 +02:00
7 lines
105 B
Ruby
7 lines
105 B
Ruby
class SyncJob < ApplicationJob
|
|
queue_as :high_priority
|
|
|
|
def perform(sync)
|
|
sync.perform
|
|
end
|
|
end
|