Spaces:
Sleeping
Sleeping
File size: 215 Bytes
2b050c2 | 1 2 3 4 5 6 7 8 9 10 11 | """
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()
|