7 lines
191 B
Python
7 lines
191 B
Python
|
from src import ModuleManager, utils
|
||
|
|
||
|
class Module(ModuleManager.BaseModule):
|
||
|
@utils.hook("received.command.echo")
|
||
|
def echo(self, event):
|
||
|
event["stdout"].write(event["args"])
|