6 lines
135 B
Python
6 lines
135 B
Python
|
|
class interface_notification_channel(object):
|
||
|
|
|
||
|
|
def notify(self, parameters, name, data, state, output):
|
||
|
|
raise NotImplementedError
|
||
|
|
|