mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-22 15:13:55 +08:00
8 lines
138 B
Python
8 lines
138 B
Python
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
async def handleTextMessage(conn, message):
|
|
await conn.websocket.send(message)
|