mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
9 lines
106 B
Ruby
9 lines
106 B
Ruby
module Rule
|
|
class NoRule
|
|
def initialize(row:); end
|
|
|
|
def skip_row?
|
|
false
|
|
end
|
|
end
|
|
end
|