Spaces:
Sleeping
Sleeping
| """Simple test app to verify HF Spaces setup.""" | |
| from fastapi import FastAPI | |
| app = FastAPI() | |
| def root(): | |
| return {"status": "working", "message": "Test app is running!"} | |
| def health(): | |
| return {"status": "healthy"} | |