mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-02 20:15:22 +02:00
8 lines
122 B
Ruby
8 lines
122 B
Ruby
|
class SyncMarketDataJob < ApplicationJob
|
||
|
queue_as :scheduled
|
||
|
|
||
|
def perform
|
||
|
MarketDataSyncer.new.sync_all
|
||
|
end
|
||
|
end
|