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