diff --git a/main.py b/main.py index 4464f34..c0b8f4b 100644 --- a/main.py +++ b/main.py @@ -1,10 +1,12 @@ #!/usr/bin/python from aiogram import executor -from loader import dp -import handlers +import asyncio + + +async def main(): + """TODO: Create and configure bot, connect to db""" if __name__ == '__main__': - handlers.register_handlers(dp) - executor.start_polling(dp, skip_updates=True) + asyncio.run(main())