This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-core/tests/scripts/introspect.sh
2019-10-19 14:13:48 +02:00

13 lines
170 B
Bash
Executable File

#!/bin/bash
if [ -z $1 ]; then
echo "usage: $0 host"
else
cat <<EOD | nc $1 2222
{"id":1, "method": "JSONRPC.Hello"}
{"id":2, "method": "JSONRPC.Introspect"}
EOD
fi