Files
Dima YaFlay 1977814eb2 Telegram bot
2021-11-03 00:52:37 +03:00

8 lines
201 B
Python

# 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)