Telegram bot

This commit is contained in:
Dima YaFlay
2021-11-03 00:52:37 +03:00
committed by GitHub
parent ff54a8c267
commit 1977814eb2
7 changed files with 105 additions and 0 deletions

8
telegram bot/bot.py Normal file
View File

@@ -0,0 +1,8 @@
# https://github.com/yaflay
# file for starting bot
from aiogram import executor
from dispatcher import dp
import handlers
if __name__ == "__main__":
executor.start_polling(dp, skip_updates=False)