chore: initial commit

This commit is contained in:
2024-12-30 03:01:21 -05:00
commit 47955cdfd5
15 changed files with 1322 additions and 0 deletions

6
core.py Normal file
View File

@@ -0,0 +1,6 @@
message_handlers = {}
async def trigger_message_handlers(event_type: str, *data):
if event_type in message_handlers:
for message_handler in message_handlers[event_type]:
await message_handler(*data)