1
1
mirror of https://gitlab.com/ceda_ei/Quadnite-Bot synced 2026-05-06 05:40:04 +02:00
Files
Quadnite-Bot/src/quadnite_bot/commands/echo.py

9 lines
241 B
Python

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)