9 lines
109 B
Bash
9 lines
109 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
collect () {
|
||
|
report 1
|
||
|
}
|
||
|
|
||
|
docs () {
|
||
|
echo "Send a simple heartbeat in form of an integer '1'."
|
||
|
}
|