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

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