Files
windmill/cli/vhs/example.flow.json
T
2022-11-25 15:17:22 +01:00

38 lines
1.2 KiB
JSON

{
"summary": "",
"description": "",
"value": {
"modules": [
{
"id": "a",
"value": {
"type": "rawscript",
"content": "// import * as wmill from \"https://deno.land/x/windmill@v1.50.0/mod.ts\"\n\nexport async function main(x: string) {\n console.log(\"Hello from Deno! The argument x is \" + x);\n return x;\n}\n",
"language": "deno",
"input_transforms": {
"x": {
"type": "static",
"value": ""
}
}
}
},
{
"id": "b",
"value": {
"type": "rawscript",
"content": "def main():\n print(\"Hello from Step 2, in Python!\");\n",
"language": "python3",
"input_transforms": {}
}
}
]
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {},
"required": [],
"type": "object"
}
}