UNPKG
@flowlab/all
Version:
latest (0.0.2)
0.0.2
0.0.1
A cool library focusing on handling various flows
github.com/countstarss/flowlab
countstarss/flowlab
@flowlab/all
/
packages
/
core
/
src
/
cli
/
commands
/
run-demo.ts
6 lines
(5 loc)
•
213 B
text/typescript
View Raw
1
2
3
4
5
6
import
{ demo }
from
'../../../test/demo'
;
export
async
function
runDemoWorkflow
(
) {
console
.
log
(
'🚀 运行 FlowLab 示例工作流...'
);
await
demo
();
// 你可以导出 test/demo.ts 中的 demo() 函数
}