10 lines
342 B
Plaintext
10 lines
342 B
Plaintext
# -*- coding: utf-8 -*-
|
||
# graph_publish.dspy — 发布画布到 script_engine(script_type=0)
|
||
# POST /drag/api/graph_publish.dspy body: {id, script_name?}
|
||
try:
|
||
ns = dict(params_kw)
|
||
result = await graph_publish(ns)
|
||
return result
|
||
except Exception as e:
|
||
return {'success': False, 'message': 'graph_publish.dspy: ' + str(e)}
|