about summary refs log tree commit diff
path: root/app/lib/admin/system_check/base_check.rb
blob: fcad8daca47ba6f99454e44779c05c4eb6119715 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class Admin::SystemCheck::BaseCheck
  def pass?
    raise NotImplementedError
  end

  def message
    raise NotImplementedError
  end
end