From 015d459791dd32bf30ae9eeba6cf5c211be5fa15 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 25 Mar 2019 10:03:50 +0100 Subject: [PATCH] Add color command --- royalnet/commands/color.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 royalnet/commands/color.py diff --git a/royalnet/commands/color.py b/royalnet/commands/color.py new file mode 100644 index 00000000..f97be778 --- /dev/null +++ b/royalnet/commands/color.py @@ -0,0 +1,12 @@ +from ..utils import Command, CommandArgs, Call + + +class PingCommand(Command): + + command_name = "color" + command_title = "Invia un colore in chat...?" + + async def common(self, call: Call, args: CommandArgs): + await call.reply(""" + I am sorry, unknown error occured during working with your request, Admin were notified + """)