vuln-patch-env / server.py
rohitc1612's picture
Initial commit: vuln-patch-env OpenEnv hackathon submission
2b050c2
raw
history blame contribute delete
215 Bytes
"""
server.py — Root-level entry point for backwards compatibility.
The canonical server is defined in server/app.py.
"""
from server.app import app, main
__all__ = ["app"]
if __name__ == "__main__":
main()