rsclaw 2026.4.22

AI Agent Engine Compatible with OpenClaw
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::ws::{
    dispatch::{MethodCtx, MethodResult},
    types::ErrorShape,
};

pub async fn node_pair_request(_ctx: MethodCtx) -> MethodResult {
    Err(ErrorShape::bad_request("node pairing not supported"))
}
pub async fn node_pair_approve(_ctx: MethodCtx) -> MethodResult {
    Err(ErrorShape::bad_request("node pairing not supported"))
}
pub async fn node_pair_reject(_ctx: MethodCtx) -> MethodResult {
    Err(ErrorShape::bad_request("node pairing not supported"))
}