Files
telegram-helper-bot/run_helper.py

8 lines
212 B
Python

import asyncio
from helper_bot.main import start_bot
from helper_bot.utils.base_dependency_factory import get_global_instance
if __name__ == '__main__':
asyncio.run(start_bot(get_global_instance()))