9 lines
261 B
Python
9 lines
261 B
Python
|
from aiogram import Bot, Dispatcher, types
|
||
|
from aiogram.contrib.fsm_storage.memory import MemoryStorage
|
||
|
|
||
|
from data import config
|
||
|
|
||
|
bot = Bot(token=config.BOT_TOKEN, parse_mode=types.ParseMode.HTML)
|
||
|
storage = MemoryStorage()
|
||
|
dp = Dispatcher(bot, storage=storage)
|