mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 21:36:03 +01:00
9 lines
139 B
Ruby
9 lines
139 B
Ruby
|
class ShareWorker
|
||
|
include Sidekiq::Worker
|
||
|
|
||
|
sidekiq_options queue: :share
|
||
|
|
||
|
def perform(answer_id)
|
||
|
# fuck this… for now
|
||
|
end
|
||
|
end
|