aboutsummaryrefslogtreecommitdiff
path: root/modules/pong.py
blob: d67da431d82b46abf664861fb44d7ab9171b1434 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
import Utils

class Module(object):
    def __init__(self, bot, events, exports):
        pass

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