This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
curunir/modules/base.py
Matthias Schiffer 0277a779c9 Added modules
2010-05-02 20:31:34 +02:00

12 lines
320 B
Python

class ModuleBase:
def __init__(self, manager):
self.manager = manager
def commands(self):
return []
def message(self, message_type, message_from, message_subject, message_body, reply):
pass
def groupchat(self, room, message_from, message_body, reply):
pass