# frozen_string_literal: true

class <%= name %>::Services::<%= options.service %> <% if options.include_dry? -%>

include Dry::Monads::Result::Mixin

<% end -%>

def initialize
  # TODO: dependency injection
end

def call
  raise NotImplementedError, "you need implement this"
end

end