// 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(())
}