mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
9 lines
146 B
Text
9 lines
146 B
Text
|
<% module_namespacing do -%>
|
||
|
class <%= class_name %>Worker
|
||
|
include Sidekiq::Worker
|
||
|
|
||
|
def perform(*args)
|
||
|
# Do something
|
||
|
end
|
||
|
end
|
||
|
<% end -%>
|