python_bot/bot.py
Pavel_Duron aefe9f6a09
All checks were successful
continuous-integration/drone/push Build is passing
add testfucn
2022-12-09 19:20:50 +10:00

28 lines
450 B
Python

from create_bot import dp
import logging
from aiogram import executor
from handlers import pipisa, time_new_year, start_help
from othersq import sendnot
logging.basicConfig(level=logging.DEBUG)
pipisa.register_handlers_pipisa(dp)
time_new_year.register_handlers_time(dp)
start_help.register_handlers_StartHelp(dp)
sendnot.register_handlers_sendnotal(dp)
if __name__ == '__main__':
executor.start_polling(dp, skip_updates=True)