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