2022-10-18 19:17:36 +10:00
|
|
|
import logging
|
2022-12-05 17:22:23 +10:00
|
|
|
from aiogram import executor
|
2022-12-10 02:02:59 +10:00
|
|
|
from create_bot import dp
|
2022-12-16 22:16:21 +10:00
|
|
|
import handlers
|
2022-12-10 02:15:32 +10:00
|
|
|
|
2022-12-13 16:34:55 +10:00
|
|
|
|
2022-12-16 22:16:21 +10:00
|
|
|
logging.basicConfig(level=logging.DEBUG)
|
2022-12-13 16:34:55 +10:00
|
|
|
|
2022-12-10 02:15:32 +10:00
|
|
|
|
2022-12-13 16:34:55 +10:00
|
|
|
|
2022-12-13 17:51:47 +10:00
|
|
|
# pipisa.register_handlers_pipisa(dp)
|
|
|
|
# time_new_year.register_handlers_time(dp)
|
|
|
|
# sendalarm.register_handlers_test(dp)
|
|
|
|
# start_help.register_handlers_StartHelp(dp)
|
2022-10-30 20:49:19 +10:00
|
|
|
|
2022-11-01 18:52:08 +10:00
|
|
|
|
2022-10-18 19:17:36 +10:00
|
|
|
if __name__ == '__main__':
|
|
|
|
executor.start_polling(dp, skip_updates=True)
|
2022-12-04 15:45:15 +10:00
|
|
|
|
2022-12-13 16:34:55 +10:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|