summaryrefslogtreecommitdiffstats
path: root/modules/base.py
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2010-05-09 21:49:15 +0200
committerMatthias Schiffer <matthias@gamezock.de>2010-05-09 21:49:15 +0200
commit1384d1976fa984b6b254c93677363f67944c0c7a (patch)
tree698faff3ef045df7f2a8e3bd75e6b1e04a397b28 /modules/base.py
parente5cd4bb20328110561ee9956f948b97c378cf671 (diff)
downloadcurunir-1384d1976fa984b6b254c93677363f67944c0c7a.tar
curunir-1384d1976fa984b6b254c93677363f67944c0c7a.zip
Made everything much more error resistant
Diffstat (limited to 'modules/base.py')
-rw-r--r--modules/base.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/modules/base.py b/modules/base.py
deleted file mode 100644
index b839e9b..0000000
--- a/modules/base.py
+++ /dev/null
@@ -1,24 +0,0 @@
-class ModuleBase:
- def __init__(self, manager):
- self.manager = manager
-
- def commands(self):
- return []
-
- def helptexts(self):
- return []
-
- def message(self, message_type, message_from, message_subject, message_body, reply):
- pass
-
- def groupchat(self, room, nick, text, handler):
- pass
-
- def join(self, room, nick, show, status, handler):
- pass
-
- def leave(self, room, nick, show, status, handler):
- pass
-
- def topic(self, room, nick, text, handler):
- pass