scense_drag/wwwroot/api/graph_list.dspy
2026-08-29 21:10:23 +08:00

10 lines
308 B
Plaintext

# -*- coding: utf-8 -*-
# graph_list.dspy — 画布分页列表
# GET /drag/api/graph_list.dspy?page=1&rows=20&name=&status=
try:
ns = dict(params_kw)
result = await list_drag_graphs(ns)
return result
except Exception as e:
return {'success': False, 'message': 'graph_list.dspy: ' + str(e)}