zap/tasks/echo.ztask

14 lines
222 B
Plaintext

task Echo {
parameters {
msg {
required = true
help = "String to echo back to the client"
type = string
}
}
script {
inline = "echo {{msg}}"
}
}