2019-05-25 20:40:06 +00:00
|
|
|
#--depends-on commands
|
|
|
|
|
2019-04-28 12:36:25 +00:00
|
|
|
from src import ModuleManager, utils
|
|
|
|
|
|
|
|
class Module(ModuleManager.BaseModule):
|
|
|
|
@utils.hook("received.command.echo")
|
2019-09-26 10:56:37 +00:00
|
|
|
@utils.kwarg("min_args", 1)
|
2019-04-28 12:36:25 +00:00
|
|
|
def echo(self, event):
|
|
|
|
event["stdout"].write(event["args"])
|
2019-09-26 11:27:20 +00:00
|
|
|
|
|
|
|
@utils.hook("received.command.action")
|
|
|
|
@utils.kwarg("min_args", 1)
|
|
|
|
@utils.kwarg("expect_output", False)
|
|
|
|
def action(self, event):
|
|
|
|
event["target"].send_message("\x01ACTION %s\x01" % event["args"])
|