mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-23 08:31:05 +00:00
13 lines
142 B
Plaintext
13 lines
142 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Mock responses to rascsi-web
|
||
|
case $1 in
|
||
|
is-active)
|
||
|
echo "is-active"
|
||
|
;;
|
||
|
|
||
|
**)
|
||
|
echo "default"
|
||
|
;;
|
||
|
esac
|