Files
xiaozhi-esp32-server/core/handle/helloHandle.py
T

9 lines
163 B
Python
Raw Normal View History

2025-02-02 23:01:14 +08:00
import json
import logging
logger = logging.getLogger(__name__)
2025-02-06 12:30:26 +08:00
async def handleHelloMessage(conn):
2025-02-02 23:01:14 +08:00
await conn.websocket.send(json.dumps(conn.welcome_msg))