mirror of
https://github.com/tropicoo/yt-dlp-bot.git
synced 2025-03-04 02:33:06 +08:00
7 lines
136 B
Python
7 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)
|