mirror of
https://github.com/civsocit/olgram.git
synced 2023-07-22 01:29:12 +03: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())
|