NEWHACKTHONSPACE / server.py
AKGW580's picture
Fix OpenEnv multi-mode validation requirements
bfe1e62
raw
history blame contribute delete
258 Bytes
"""
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()