mashirozx/mastodon

View on GitHub
app/services/base_service.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class BaseService
  include ActionView::Helpers::TextHelper
  include ActionView::Helpers::SanitizeHelper

  include RoutingHelper

  def call(*)
    raise NotImplementedError
  end
end