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