1
1
mirror of https://gitlab.com/ceda_ei/Quadnite-Bot synced 2026-05-12 08:40:06 +02:00

Add core structure for DeltaChat port

This commit is contained in:
2026-05-04 18:25:48 +02:00
parent 7cf9689420
commit bdd3a11cec
9 changed files with 211 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
from deltabot_cli import BotCli
from deltachat2 import events
from quadnite_bot.command_registry import dispatcher
def main():
cli = BotCli("quadnite-bot")
cli.on(events.NewMessage)(dispatcher)
cli.start()