Spaces:
Sleeping
Sleeping
File size: 174 Bytes
761f203 | 1 2 3 4 5 6 7 8 9 | """Compatibility entrypoint for running the API as `python server.py`."""
from server.app import app, main
__all__ = ["app", "main"]
if __name__ == "__main__":
main()
|