6 lines
94 B
Ruby
6 lines
94 B
Ruby
class ApplicationService
|
|
def self.call(*args, &block)
|
|
new(*args, &block).call
|
|
end
|
|
end
|