mirror of
https://github.com/tropicoo/yt-dlp-bot.git
synced 2024-11-13 02:55:26 +08:00
11 lines
187 B
Python
11 lines
187 B
Python
from core.launcher import WorkerLauncher
|
|
from core.log import setup_logging
|
|
|
|
|
|
def main() -> None:
|
|
setup_logging()
|
|
WorkerLauncher().start()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|