jacquard_api/com_atproto/server/
delete_session.rs

1// @generated by jacquard-lexicon. DO NOT EDIT.
2//
3// Lexicon: com.atproto.server.deleteSession
4//
5// This file was automatically generated from Lexicon schemas.
6// Any manual changes will be overwritten on the next regeneration.
7
8/// XRPC request marker type
9#[derive(Debug, Clone, Copy, PartialEq, Eq, serde::Serialize)]
10pub struct DeleteSession;
11impl jacquard_common::types::xrpc::XrpcRequest for DeleteSession {
12    const NSID: &'static str = "com.atproto.server.deleteSession";
13    const METHOD: jacquard_common::types::xrpc::XrpcMethod = jacquard_common::types::xrpc::XrpcMethod::Procedure(
14        "application/json",
15    );
16    const OUTPUT_ENCODING: &'static str = "application/json";
17    type Output<'de> = ();
18    type Err<'de> = jacquard_common::types::xrpc::GenericError<'de>;
19}