This commit is contained in:
hhh
2025-01-02 22:19:43 +02:00
commit 9e29d01f1d
28 changed files with 1171 additions and 0 deletions

11
bot/common.py Normal file
View File

@@ -0,0 +1,11 @@
from aiogram import Bot, Dispatcher
from rich.console import Console
from .utils.config import config
bot = Bot(token=config.telegram.bot_token)
dp = Dispatcher()
console = Console()
__all__ = ["bot", "dp", "config", "console"]