18 lines
369 B
Go
18 lines
369 B
Go
package node
|
|
|
|
import (
|
|
"ai-agent/workflow/consts/node"
|
|
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
)
|
|
|
|
type WorkflowNodeTreeReq struct {
|
|
g.Meta `path:"/list" method:"get" tags:"节点组件库管理" summary:"节点组件库列表" dc:"节点组件库列表"`
|
|
|
|
Creator string `json:"creator"`
|
|
}
|
|
|
|
type WorkflowNodeTreeRes struct {
|
|
Groups []node.NodeGroupTree `json:"groups"`
|
|
}
|