6 lines
194 B
Python
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()) |