oto/apps/runner/assets/yaml/sample/11_utils.yaml
toki 86afabb3eb refactor(runner): 런타임 패키지를 앱 하위로 이동한다
독립 control plane 구성을 위해 기존 Dart CLI/runtime을 runner 앱 경계로 옮기고, 후속 client/core/root 작업을 같은 마일스톤 task group에 연결한다.
2026-06-05 06:34:45 +09:00

31 lines
601 B
YAML

---
# [샘플] 유틸리티
property:
workspace: /path/to/project
apiUrl: "https://api.example.com/v1/users?active=true#top"
pipeline:
id: main
workflow:
- exe: url-parse
- exe: delay-short
commands:
# URL 파싱
- command: URLInfo
id: url-parse
param:
url: <!property.apiUrl>
setScheme: <@property.urlScheme>
setHost: <@property.urlHost>
setPort: <@property.urlPort>
setPath: <@property.urlPath>
setQuery: <@property.urlQuery>
setFragment: <@property.urlFragment>
# 지연 (millisecond)
- command: Delay
id: delay-short
param:
millisecond: 500