Files
AnyMusicBot/bot/common.py
2025-01-21 00:24:19 +02:00

14 lines
262 B
Python

from aiogram import Bot, Dispatcher
from rich.console import Console
from bot.modules.fsm import InDbStorage
from .utils import env
bot = Bot(token=env.BOT_TOKEN)
dp = Dispatcher(storage=InDbStorage())
console = Console()
__all__ = ["bot", "dp", "console"]