mirror of
https://github.com/rjNemo/graphql-file_upload
synced 2026-06-06 02:16:44 +00:00
5 lines
85 B
Python
5 lines
85 B
Python
import uvicorn
|
|
|
|
from .main import app
|
|
|
|
uvicorn.run(app, host="127.0.0.1", port=8000)
|