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