This repository has been archived on 2022-10-17. You can view files and clone it, but cannot push or open issues or pull requests.
tg-bot-sample/main.py

11 lines
200 B
Python

#!/usr/bin/python
from aiogram import executor
from loader import dp
import handlers
if __name__ == '__main__':
handlers.register_handlers(dp)
executor.start_polling(dp, skip_updates=True)