core/source/logic/channels/_interface.py

14 lines
267 B
Python

class interface_notification_channel(object):
def parameters_schema(self):
raise NotImplementedError
def normalize_conf_node(self, node):
raise NotImplementedError
def notify(self, parameters, name, data, state, info):
raise NotImplementedError