shrike 0.1.0

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

/// IdentityRequestPlcOperationSignature — Request an email with a code to in order to request a signed PLC operation. Requires Auth.
pub async fn identity_request_plc_operation_signature(
    client: &crate::xrpc::Client,
) -> Result<(), crate::xrpc::Error> {
    let _: serde_json::Value = client
        .procedure("com.atproto.identity.requestPlcOperationSignature", &())
        .await?;
    Ok(())
}