akkounts/app/services/application_service.rb

6 lines
94 B
Ruby

class ApplicationService
def self.call(*args, &block)
new(*args, &block).call
end
end