Skip to content

Instantly share code, notes, and snippets.

@narodnik
Created December 28, 2020 15:04
Show Gist options
  • Save narodnik/86436f386953d35c0be238a2365ae382 to your computer and use it in GitHub Desktop.
Save narodnik/86436f386953d35c0be238a2365ae382 to your computer and use it in GitHub Desktop.
let quit_send = self.quit_send.clone();
io.add_method("quit", move |_| {
let quit_send = quit_send.clone();
async move {
quit_send.send(()).await;
Ok(jsonrpc_core::Value::Null)
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment