world_sync/wwwroot/api/world_sync_update.dspy

6 lines
256 B
Plaintext

ns = params_kw.copy()
result = await update_world_sync(ns)
if result.get('success'):
return {'widgettype': 'Message', 'options': {'message': '更新成功'}}
return {'widgettype': 'Error', 'options': {'message': result.get('message', '更新失败')}}