mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:47:22 +08:00
14 lines
179 B
Ruby
14 lines
179 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Service::ActionBase
|
||
|
extend Dry::Initializer
|
||
|
|
||
|
def self.call(...)
|
||
|
new(...).call
|
||
|
end
|
||
|
|
||
|
def call
|
||
|
raise "Not implemented"
|
||
|
end
|
||
|
end
|