shrike 0.1.1

AT Protocol library for Rust
Documentation
1
2
3
4
5
6
7
8
9
// Code generated by lexgen. DO NOT EDIT.

/// ServerDeleteSession — Delete the current session. Requires auth using the 'refreshJwt' (not the 'accessJwt').
pub async fn server_delete_session(client: &crate::xrpc::Client) -> Result<(), crate::xrpc::Error> {
    let _: serde_json::Value = client
        .procedure("com.atproto.server.deleteSession", &())
        .await?;
    Ok(())
}