tuist/projects/cloud/app/services/application_service.rb

14 lines
216 B
Ruby

# frozen_string_literal: true
class ApplicationService
class << self
def call(*args, **kwargs, &block)
new(*args, **kwargs, &block).call
end
end
def call
raise NotImplementedError
end
end