mirror of
https://github.com/tropicoo/yt-dlp-bot.git
synced 2025-03-03 18:23:34 +08:00
6 lines
136 B
Python
6 lines
136 B
Python
import uvicorn
|
|
|
|
from api.core.app import app # noqa
|
|
|
|
if __name__ == '__main__':
|
|
uvicorn.run('main:app', host='0.0.0.0', port=8000)
|