yt-dlp-bot/bot/main.py
2022-11-02 20:40:56 +02:00

16 lines
265 B
Python

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