]> jfr.im git - erebus.git/blame - modules/modtest.py
Starting to work on users in DB
[erebus.git] / modules / modtest.py
CommitLineData
5c6c0839
JR
1# preamble
2import modlib
3lib = modlib.modlib(__name__)
4modstart = lib.modstart
d1ea05b0 5modstop = lib.modstop
5c6c0839
JR
6
7#module code
8@lib.hook('test')
9def cmd_test(bot, user, chan, *args):
10 bot.msg(chan, "You said: !test %s" % (' '.join([str(arg) for arg in args])))