jacquard_api/com_atproto/server/
delete_session.rs1#[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}