forked from extern/FakeRelay
8 lines
67 B
Bash
8 lines
67 B
Bash
|
#!/bin/ash
|
||
|
|
||
|
if [ "$1" = "web" ]; then
|
||
|
web
|
||
|
else
|
||
|
cli "$@"
|
||
|
fi
|