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/simple_worker.rb
2013-03-11 12:24:11 +00:00

8 lines
102 B
Ruby

class SimpleWorker
include Sidekiq::Worker
include Sidetiq::Schedulable
def perform
end
end