CoolFace
Apppublic

SyncShift/sql-correction-env

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
server.py10 linesDownload Raw Back to root
1"""Compatibility wrapper for local `python server.py` runs."""2 3from sql_env.server import app, main4 5__all__ = ["app", "main"]6 7 8if __name__ == "__main__":9    main()10