9 lines
304 B
Plaintext
9 lines
304 B
Plaintext
# world_snapshot get_snapshot.dspy
|
||
# 查询单条世界快照(id 必填)
|
||
try:
|
||
result = await get_snapshot(params_kw)
|
||
return result
|
||
except Exception as e:
|
||
debug(f'get_snapshot.dspy error: {format_exc()}')
|
||
return {'code': 'INTERNAL_ERROR', 'message': str(e), 'field': '', 'detail': ''}
|