shrike 0.1.1

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

/// ServerActivateAccount — Activates a currently deactivated account. Used to finalize account migration after the account's repo is imported and identity is setup.
pub async fn server_activate_account(
    client: &crate::xrpc::Client,
) -> Result<(), crate::xrpc::Error> {
    let _: serde_json::Value = client
        .procedure("com.atproto.server.activateAccount", &())
        .await?;
    Ok(())
}