69d58eede2
related functionality
9 lines
235 B
Python
9 lines
235 B
Python
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!")
|