mirror of
https://github.com/civsocit/olgram.git
synced 2025-05-28 15:13:24 +00:00
8 lines
210 B
Python
8 lines
210 B
Python
from aiogram import Dispatcher, Bot
|
|
from aiogram.contrib.fsm_storage.memory import MemoryStorage
|
|
from .settings import BotSettings
|
|
|
|
|
|
bot = Bot(BotSettings.token())
|
|
dp = Dispatcher(bot, storage=MemoryStorage())
|