mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-25 08:33:53 +08:00
update:优化页面样式
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
from aiohttp import web
|
||||
from typing import Optional, Dict, Any # 导入Optional用于表示可选类型
|
||||
|
||||
|
||||
def response_error(msg):
|
||||
return web.json_response({"code": -1, 'msg': msg}, status=200)
|
||||
|
||||
|
||||
def response_success(msg: str = '', data: Optional[Any] = None):
|
||||
if data is None:
|
||||
data = {}
|
||||
return web.json_response({"code": 0, 'msg': msg, 'data': data}, status=200)
|
||||
|
||||
|
||||
def response_unauthorized():
|
||||
return web.json_response({"code": 401}, status=200)
|
||||
Reference in New Issue
Block a user