mirror of
https://gitlab.com/RemixDev/deemix-py.git
synced 2025-01-06 07:06:04 +00:00
7 lines
183 B
Python
7 lines
183 B
Python
#!/usr/bin/env python3
|
|
|
|
class MessageInterface:
|
|
def send(self, message, value=None):
|
|
"""Implement this class to process updates and messages from the core"""
|
|
pass
|