mirror of
https://github.com/we-promise/sure.git
synced 2026-04-20 20:44:08 +00:00
8 lines
105 B
Ruby
8 lines
105 B
Ruby
class SyncJob < ApplicationJob
|
|
queue_as :high_priority
|
|
|
|
def perform(sync)
|
|
sync.perform
|
|
end
|
|
end
|