mirror of
https://github.com/catspace-dev/unicheckbot.git
synced 2024-11-22 05:46:33 +03:00
Добавил bot.py
This commit is contained in:
parent
0cb6729e0c
commit
a989d52680
18
apps/tgbot/bot.py
Normal file
18
apps/tgbot/bot.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
from aiogram import Bot, Dispatcher, executor
|
||||
from aiogram.contrib.fsm_storage.memory import MemoryStorage
|
||||
from loguru import logger
|
||||
|
||||
import config
|
||||
import handlers
|
||||
|
||||
storage = MemoryStorage()
|
||||
telegram_bot = Bot(token=config.TELEGRAM_BOT_TOKEN)
|
||||
dp = Dispatcher(telegram_bot, storage=storage)
|
||||
|
||||
def on_startup():
|
||||
logger.info('Registering handlers')
|
||||
handlers.default.setup(dp)
|
||||
|
||||
if __name__ == '__main__':
|
||||
on_startup()
|
||||
executor.start_polling(dp,skip_updates=True)
|
Loading…
Reference in New Issue
Block a user