10 lines
308 B
Plaintext
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)}
|