]> jfr.im git - erebus.git/blame - modules/foo.py
Merge branch 'master' of kronos.jfr.im:erebus
[erebus.git] / modules / foo.py
CommitLineData
9bd05cf6 1# Erebus IRC bot - Author: Erebus Team
931c88a4 2# simple module example
3# This file is released into the public domain; see http://unlicense.org/
4
e4255e70 5# module info
6modinfo = {
9bd05cf6 7 'author': 'Erebus Team',
e4255e70 8 'license': 'public domain',
9 'compatible': [1], # compatible module API versions
10 'depends': [], # other modules required to work properly?
11}
12
6c70d82c 13# preamble
14import modlib
15lib = modlib.modlib(__name__)
16modstart = lib.modstart
db50981b 17modstop = lib.modstop
6c70d82c 18
e4255e70 19# module code
586997a7 20@lib.hook('test', needchan=False)
21def cmd_gtest(bot, user, chan, realtarget, *args):
22 if chan is not None: replyto = chan
23 else: replyto = user
24
8583bc12 25 bot.msg(replyto, "You said: %s" % (' '.join([str(arg) for arg in args])))