core/source/notification_channels/_interface.py

10 lines
206 B
Python
Raw Normal View History

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