9 lines
313 B
Plaintext
9 lines
313 B
Plaintext
# world_snapshot snapshot_delete.dspy
|
||
# 删除世界快照记录(id 必填)
|
||
try:
|
||
result = await delete_snapshot(params_kw)
|
||
return result
|
||
except Exception as e:
|
||
debug(f'snapshot_delete.dspy error: {format_exc()}')
|
||
return {'code': 'INTERNAL_ERROR', 'message': str(e), 'field': '', 'detail': ''}
|