jacquard-api 0.11.1

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: ooo.bsky.authfetch.destroyRepo
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
/// XRPC request marker type.

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Copy)]
pub struct DestroyRepo;
/// Response type for ooo.bsky.authfetch.destroyRepo
pub struct DestroyRepoResponse;
impl jacquard_common::xrpc::XrpcResp for DestroyRepoResponse {
    const NSID: &'static str = "ooo.bsky.authfetch.destroyRepo";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = ();
    type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}

impl jacquard_common::xrpc::XrpcRequest for DestroyRepo {
    const NSID: &'static str = "ooo.bsky.authfetch.destroyRepo";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = DestroyRepoResponse;
}

/// Endpoint type for ooo.bsky.authfetch.destroyRepo
pub struct DestroyRepoRequest;
impl jacquard_common::xrpc::XrpcEndpoint for DestroyRepoRequest {
    const PATH: &'static str = "/xrpc/ooo.bsky.authfetch.destroyRepo";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<'de> = DestroyRepo;
    type Response = DestroyRepoResponse;
}