Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
junaid17
/
testapi
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
testapi
/
app.py
junaid17
Update app.py
9c3102d
verified
1 day ago
raw
Copy download link
history
blame
contribute
delete
Safe
141 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
health
():
return
{
"status"
:
"ok"
,
"message"
:
"Docker Space is running"
}