7 lines
178 B
Python
7 lines
178 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
class MessageInterface:
|
||
|
def send(self, message, value):
|
||
|
"""Implement this class to process updates and messages from the core"""
|
||
|
pass
|