Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
puzan789
/
mcq
like
0
Sleeping
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
main
mcq
/
main.py
puzan789
Added
775ba42
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
187 Bytes
from
fastapi
import
FastAPI
from
app.api
import
router
import
uvicorn
app=FastAPI()
app.include_router(router)
if
__name__==
"__main__"
:
uvicorn.run(app, host=
"0.0.0.0"
, port=
3000
)