mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-09 15:35:22 +02:00
8 lines
100 B
Ruby
8 lines
100 B
Ruby
|
class SyncCleanerJob < ApplicationJob
|
||
|
queue_as :scheduled
|
||
|
|
||
|
def perform
|
||
|
Sync.clean
|
||
|
end
|
||
|
end
|