1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-01-23 08:03:02 -05:00

13 lines
217 B
Ruby
Raw Normal View History

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