python_bot/bot.py
Pavel_Duron 502dca273d
All checks were successful
continuous-integration/drone/push Build is passing
fix sesions
2022-12-06 17:05:09 +10:00

28 lines
424 B
Python

from create_bot import dp
import logging
from aiogram import executor
from handlers import pipisa, time_new_year, start_help
print('Бот начал работу')
logging.basicConfig(level=logging.DEBUG)
pipisa.register_handlers_pipisa(dp)
time_new_year.register_handlers_time(dp)
start_help.register_handlers_StartHelp(dp)
if __name__ == '__main__':
executor.start_polling(dp, skip_updates=True)