core/source/notification_channels/_interface.py
2022-11-30 23:14:38 +01:00

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