core/source/notification_channels/_interface.py

10 lines
206 B
Python

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