world_sync/wwwroot/api/create_world_sync.dspy

6 lines
256 B
Plaintext

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