Complete rewrite and re-architecture Osmedeus Engine in v5

This commit is contained in:
j3ssie
2026-01-18 19:32:24 +08:00
commit 7a2c5a5dc9
743 changed files with 99767 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
name: test-loop
kind: module
description: Test foreach loop with threading
tags: test,foreach,loop
params:
- name: target
required: true
steps:
- name: create-input
type: bash
commands:
- mkdir -p {{Output}}
- printf 'one\ntwo\nthree\nfour\nfive\n' > {{Output}}/items.txt
- name: process-items
type: foreach
input: "{{Output}}/items.txt"
variable: item
threads: 2
step:
name: process-item
type: bash
command: echo "Processing [[item]] for {{target}}"