#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
use jacquard_derive::IntoStatic;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Copy)]
pub struct 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<S: BosStr> = ();
type Err = jacquard_common::xrpc::GenericError;
}
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;
}
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<S: BosStr> = DestroyRepo;
type Response = DestroyRepoResponse;
}