class ApplicationService
  include Callable

  Error = Class.new(StandardError)

  private

  def strip(str)
    str.to_s.strip.presence
  end
end