aboutsummaryrefslogtreecommitdiff
path: root/modules/echo.py
blob: c8f2303d6465cd2bcb6a350411d132f2c14b26df (about) (plain) (blame)
1
2
3
4
5
6
7
8
#--depends-on commands

from src import ModuleManager, utils

class Module(ModuleManager.BaseModule):
    @utils.hook("received.command.echo")
    def echo(self, event):
        event["stdout"].write(event["args"])