mirror of
https://github.com/endofunky/sidetiq.git
synced 2022-11-09 13:53:30 -05:00
10 lines
143 B
Ruby
10 lines
143 B
Ruby
class SplatArgsWorker
|
|
include Sidekiq::Worker
|
|
include Sidetiq::Schedulable
|
|
|
|
recurrence { hourly }
|
|
|
|
def perform(arg1, *args)
|
|
end
|
|
end
|
|
|