mirror of
https://github.com/yawaflua/Easy_telegram_bot.git
synced 2025-12-10 20:39:36 +02:00
8 lines
201 B
Python
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) |