testapi / app.py
junaid17's picture
Update app.py
9c3102d verified
raw
history blame contribute delete
141 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def health():
return {"status": "ok", "message": "Docker Space is running"}