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/splat_args_worker.rb

11 lines
143 B
Ruby
Raw Permalink Normal View History

class SplatArgsWorker
include Sidekiq::Worker
include Sidetiq::Schedulable
recurrence { hourly }
def perform(arg1, *args)
end
end