core/source/logic/channels/_interface.py

14 lines
267 B
Python
Raw Normal View History

2022-11-29 23:53:14 +01:00
class interface_notification_channel(object):
def parameters_schema(self):
raise NotImplementedError
def normalize_conf_node(self, node):
raise NotImplementedError
2022-11-30 23:14:38 +01:00
def notify(self, parameters, name, data, state, info):
2022-11-29 23:53:14 +01:00
raise NotImplementedError