from deltachat2 import NewMsgEvent from quadnite_bot.command import Command, Context class EchoCommand(Command): command = "echo" def process_event(self, ctx: Context, event: NewMsgEvent) -> None: ctx.reply(event.msg.text)