mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 07:13:43 +08:00
10 lines
191 B
Ruby
10 lines
191 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ServiceJob < ::Jobs::Base
|
||
|
include Chat::WithServiceHelper
|
||
|
|
||
|
def run_service(service, dependencies)
|
||
|
@_result = service.call(dependencies)
|
||
|
end
|
||
|
end
|