1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/services/base_service.rb

13 lines
217 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-02-24 03:57:29 -08:00
class BaseService
include ActionView::Helpers::TextHelper
include ActionView::Helpers::SanitizeHelper
include RoutingHelper
def call(*)
raise NotImplementedError
end
2016-02-24 03:57:29 -08:00
end