Files
h1686bot/bot/common.py
2025-01-02 22:19:43 +02:00

12 lines
232 B
Python

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"]