mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2025-01-04 08:13:47 +01: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
|