python_bot/bot.py
Pavel_Duron 9c91fc5420
All checks were successful
continuous-integration/drone/push Build is passing
add sinonims for dickup test done
2022-12-16 22:16:21 +10:00

32 lines
524 B
Python

import logging
import graypy
from aiogram import executor
from create_bot import dp
import handlers
logging.basicConfig(level=logging.DEBUG)
# logging.basicConfig(
# level = logging.DEBUG,
# handlers = [ graypy.GELFUDPHandler('localhost', 12201) ]
# )
# pipisa.register_handlers_pipisa(dp)
# time_new_year.register_handlers_time(dp)
# sendalarm.register_handlers_test(dp)
# start_help.register_handlers_StartHelp(dp)
if __name__ == '__main__':
executor.start_polling(dp, skip_updates=True)