bitbot-3.11-fork/modules/pong.py
2018-08-31 10:50:37 +01:00

7 lines
213 B
Python

class Module(object):
def __init__(self, bot):
bot.events.on("received.command.ping").hook(
self.pong, help="Ping pong!")
def pong(self, event):
event["stdout"].write("Pong!")