From b5fcfecbdc1e4d236af04df7b60f2822b6a5d06a Mon Sep 17 00:00:00 2001 From: mdway Date: Sun, 1 Oct 2017 16:58:53 +0200 Subject: Initial commit --- src/modules/echo.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/modules/echo.py (limited to 'src/modules') diff --git a/src/modules/echo.py b/src/modules/echo.py new file mode 100644 index 0000000..9510442 --- /dev/null +++ b/src/modules/echo.py @@ -0,0 +1,18 @@ +import asyncio + +import main + +client = None + + +@main.description("aka cat") +@main.name("echo") +@asyncio.coroutine +def echo(args, author, channel, message): + yield from client.send_message(channel, content=author.mention + ': ' + args[0]) + + +def setup(default_cmds, cclient): + global client + default_cmds += [echo] + client = cclient -- cgit