--- /dev/null
+# -*- coding: utf-8 -*-
+import logging
+
+from distbot.common.action import Action
+from distbot.common.message import get_words
+from distbot.bot.worker import Worker
+
+logger = logging.getLogger(__name__)
+
+
+class Echo(Worker):
+ binding_keys = ['nick.echo.#']
+ description = "a really handsome parrot bot"
+ usage = "bot: echo <your message here>"
+
+ def parse_body(self, msg):
+ message = " ".join(get_words(msg)[1:])
+ logger.debug(message)
+ return Action(msg=message)
+
+
+ALL = [Echo]