mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-12 18:03:03 +00:00
12 lines
170 B
Ruby
12 lines
170 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Admin::SystemCheck::BaseCheck
|
||
|
def pass?
|
||
|
raise NotImplementedError
|
||
|
end
|
||
|
|
||
|
def message
|
||
|
raise NotImplementedError
|
||
|
end
|
||
|
end
|