Spaces:
Sleeping
Sleeping
File size: 258 Bytes
30536e5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
"""Simple test app to verify HF Spaces setup."""
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"status": "working", "message": "Test app is running!"}
@app.get("/health")
def health():
return {"status": "healthy"}
|