mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-23 07:33:53 +08:00
9 lines
176 B
Python
9 lines
176 B
Python
import json
|
|
from config.logger import setup_logging
|
|
|
|
logger = setup_logging()
|
|
|
|
|
|
async def handleHelloMessage(conn):
|
|
await conn.websocket.send(json.dumps(conn.welcome_msg))
|