14 lines
294 B
Python
14 lines
294 B
Python
from aiogram import Bot, Dispatcher
|
|
from rich.console import Console
|
|
|
|
from bot.modules.fsm import InDbStorage
|
|
|
|
from .utils.config import config
|
|
|
|
bot = Bot(token=config.telegram.bot_token)
|
|
dp = Dispatcher(storage=InDbStorage())
|
|
console = Console()
|
|
|
|
|
|
__all__ = ["bot", "dp", "config", "console"]
|