Spaces:
Sleeping
Sleeping
| """ | |
| Compatibility wrapper for local runs. | |
| The OpenEnv validator expects the FastAPI app in server/app.py. | |
| This wrapper keeps existing commands like `uvicorn server:app` working. | |
| """ | |
| from server.app import app, main | |
| if __name__ == "__main__": | |
| main() | |