17 lines
289 B
Python
17 lines
289 B
Python
class interface_check_kind(object):
|
|
|
|
def parameters_schema(self):
|
|
raise NotImplementedError
|
|
|
|
|
|
def normalize_conf_node(self, node):
|
|
raise NotImplementedError
|
|
|
|
|
|
'''
|
|
return record<condition:enum_condition,info:any>
|
|
'''
|
|
def run(self, parameters):
|
|
raise NotImplementedError
|
|
|