Spaces:
Sleeping
Sleeping
| """ | |
| Minimal FastAPI test endpoint. | |
| """ | |
| from fastapi import FastAPI | |
| app = FastAPI() | |
| async def test(): | |
| return {"status": "ok", "message": "FastAPI test works"} | |
| """ | |
| Minimal FastAPI test endpoint. | |
| """ | |
| from fastapi import FastAPI | |
| app = FastAPI() | |
| async def test(): | |
| return {"status": "ok", "message": "FastAPI test works"} | |