Files
TeleDiffusionBot/bot/common.py
2023-02-13 19:51:25 +02:00

9 lines
215 B
Python

from aiogram import Bot, Dispatcher
from bot.config import TOKEN
from aiogram.contrib.fsm_storage.memory import MemoryStorage
bot = Bot(token=TOKEN)
storage = MemoryStorage()
dp = Dispatcher(bot, storage=storage)