Spaces:
Sleeping
Sleeping
| from __future__ import annotations | |
| import uvicorn | |
| def main() -> None: | |
| uvicorn.run( | |
| "server.app:app", | |
| host="0.0.0.0", | |
| port=8000, | |
| ws_ping_interval=300, | |
| ws_ping_timeout=300, | |
| ) | |
| from __future__ import annotations | |
| import uvicorn | |
| def main() -> None: | |
| uvicorn.run( | |
| "server.app:app", | |
| host="0.0.0.0", | |
| port=8000, | |
| ws_ping_interval=300, | |
| ws_ping_timeout=300, | |
| ) | |