| 123456789101112131415161718192021 |
- /*
- * @Author: liuJie
- * @Date: 2026-01-24 19:45:07
- * @LastEditors: liuJie
- * @LastEditTime: 2026-01-25 22:00:48
- * @Describe: HTTP请求节点
- */
- import type { IWorkflowNode} from '@repo/workflow'
- export const httpNode: IWorkflowNode = {
- id: 'http-node',
- type: 'http-node',
- label: 'http',
- position: {x: 468, y: 370},
- data: {
- id: 'http-node-1',
- description: 'http请求节点',
- inputs: [],
- outputs: []
- }
- };
|