mirror of
https://github.com/tropicoo/yt-dlp-bot.git
synced 2024-11-10 17:15:13 +08:00
15 lines
265 B
Python
15 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())
|