kangda/run_websocket.py
2025-05-22 16:21:08 +08:00

6 lines
194 B
Python

import asyncio
from app.services.websocket_service import run_websocket_client
if __name__ == "__main__":
print("启动WebSocket客户端服务...")
asyncio.run(run_websocket_client())