sql-correction-env / server.py
sravaniamere's picture
Fix server entrypoint packaging and align environment docs
1a1713a
Raw
History Blame Contribute Delete
168 Bytes
"""Compatibility wrapper for local `python server.py` runs."""
from sql_env.server import app, main
__all__ = ["app", "main"]
if __name__ == "__main__":
main()