b7cf524e98
hooks for a module
8 lines
206 B
Python
8 lines
206 B
Python
|
|
|
|
class Module(object):
|
|
def __init__(self, bot, events):
|
|
events.on("received.command.ping").hook(self.pong, help="Ping pong!")
|
|
|
|
def pong(self, event):
|
|
event["stdout"].write("Pong!")
|