macro_rules! rpc_notification {
($method:expr_2021, $params:expr_2021) => { ... };
($method:expr_2021) => { ... };
}Expand description
Create a JSON-RPC notification
ยงUsage:
// Notification with method and params
rpc_notification!("log", {"level": "info", "message": "Hello"})
// Notification with method only
rpc_notification!("ping")