统一的消息返回函数
(status, msg, data=None)
| 215 | |
| 216 | @staticmethod |
| 217 | def return_message(status, msg, data=None): |
| 218 | """统一的消息返回函数""" |
| 219 | return { |
| 220 | 'msg': msg, |
| 221 | 'data': data if data is not None else {}, |
| 222 | 'status': status |
| 223 | } |
| 224 | |
| 225 | def __init__(self, config_file_path='/www/server/panel/data/panel_asset.json', auto_init=True): |
| 226 | """初始化主题配置管理器""" |
no outgoing calls