1
0
Fork 0
mirror of https://github.com/endofunky/sidetiq.git synced 2022-11-09 13:53:30 -05:00
endofunky--sidetiq/test/fixtures/last_and_scheduled_ticks_worker.rb

10 lines
169 B
Ruby

class LastAndScheduledTicksWorker
include Sidekiq::Worker
include Sidetiq::Schedulable
recurrence { hourly }
def perform(last_tick, scheduled_tick)
end
end