Files
wehub-resource-sync 4e0f4422d0
Check Markdown links / markdown-link-check (push) Waiting to run
Pytest / test (3.11) (push) Waiting to run
Pytest / test (3.12) (push) Waiting to run
build-docs / deploy (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:25:42 +08:00

29 lines
477 B
Bash

_debug_command() {
echo "<<INTERACTIVE||$@||INTERACTIVE>>"
}
# @yaml
# signature: dummy_start
# docstring:
dummy_start() {
_debug_command "SESSION=dummy"
_debug_command "START"
}
# @yaml
# signature: dummy_stop
# docstring:
dummy_stop() {
_debug_command "SESSION=dummy"
_debug_command "stop"
_debug_command "STOP"
}
# @yaml
# signature: dummy_send <input>
# docstring:
dummy_send() {
_debug_command "SESSION=dummy"
_debug_command "send $@"
}