bitbot-3.11-fork/modules/pong.py

10 lines
235 B
Python
Raw Normal View History

from src import ModuleManager, utils
2016-03-29 11:56:58 +00:00
class Module(ModuleManager.BaseModule):
@utils.hook("received.command.ping")
2016-03-29 11:56:58 +00:00
def pong(self, event):
"""
:help: Ping pong!
"""
2016-03-29 11:56:58 +00:00
event["stdout"].write("Pong!")