yt-dlp-bot/app_bot/main.py
2023-02-02 19:31:07 +02:00

16 lines
273 B
Python

#!/usr/bin/env python3
"""Bot Launcher Module."""
import asyncio
from bot.core.bot import BotLauncher
from bot.core.log import setup_logging
async def main() -> None:
setup_logging()
await BotLauncher().run()
if __name__ == '__main__':
asyncio.run(main())