internetee-registry/lib/application_service.rb
2021-05-20 17:13:26 +05:00

5 lines
94 B
Ruby

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