Initial release
Build and Push Docker Images / build (push) Successful in 17s

This commit is contained in:
Stardream
2026-06-02 10:58:24 +10:00
commit eace48732d
88 changed files with 11140 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
from aiogram import Bot, Dispatcher
from aiogram.client.default import DefaultBotProperties
from app.core.config import settings
from app.bot.handlers import start, member
bot = Bot(
token=settings.bot_token,
default=DefaultBotProperties(parse_mode="HTML"),
)
dp = Dispatcher()
dp.include_router(start.router)
dp.include_router(member.router)
# Populated at startup by main.py after bot.get_me()
bot_username: str = ""