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