base_service.rb 217 B

123456789101112
  1. # frozen_string_literal: true
  2. class BaseService
  3. include ActionView::Helpers::TextHelper
  4. include ActionView::Helpers::SanitizeHelper
  5. include RoutingHelper
  6. def call(*)
  7. raise NotImplementedError
  8. end
  9. end