We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Server echo REPL
let service = rpc "/something.php" while true echo service.echo(ask "?") end
The text was updated successfully, but these errors were encountered:
Without Open-RPC the service object should be a proxy. Maybe Open-RPC is not needed at all.
Sorry, something went wrong.
add rpc command #69
7892567
TODO: test with:
import Object let service = rpc* "https://...." config {"completion" => Object.keys(service)} while true do let cmd = parse ask "rpc> " let ret = service[cmd.name](*cmd.args) if ret.error then echo "<red>" + ret.error + "</red>" else echo ret.result end end
No branches or pull requests
Server echo REPL
The text was updated successfully, but these errors were encountered: