aboutsummaryrefslogtreecommitdiff
path: root/modules/pong.py
blob: c45e3aef0082e55aaf8fb833c049b46808cbdebd (about) (plain) (blame)
1
2
3
4
5
6
from src import ModuleManager, Utils

class Module(ModuleManager.BaseModule):
    @Utils.hook("received.command.ping", help="Ping pong!")
    def pong(self, event):
        event["stdout"].write("Pong!")