blob: 10a3b78281843a5f8b8119d5a1e44868bd62d82f (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
class Module(object):
def __init__(self, bot):
bot.events.on("received").on("command").on("ping"
).hook(self.pong, help="Ping pong!")
def pong(self, event):
event["stdout"].write("Pong!")
|