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