houdini/Houdini/Plugins/Commands/__init__.py

12 lines
277 B
Python
Raw Normal View History

2019-03-01 19:41:40 +00:00
from Houdini.Handlers import Handlers, XTPacket
class Commands:
def __init__(self, server):
self.server = server
@Handlers.handler(XTPacket('s', 'sm'))
async def handle_send_message(self, message: str):
print('Do stuff with {}'.format(message))