cnb 0.2.2

CNB (cnb.cool) API client for Rust — typed, async, production-ready
Documentation
// @generated DO NOT EDIT.
//
// Placeholder for the `Wiki` resource client. The real implementation is
// produced by `cargo run -p cnb-codegen` (phase 5: generate-resources). Until
// then this stub keeps the crate compiling and exposes a no-op
// [`WikiClient::new`] so [`crate::ApiClient::wiki`] is callable.

#![allow(missing_docs)]

use crate::http::HttpInner;

/// `Wiki` resource client.
#[derive(Debug, Clone)]
pub struct WikiClient {
    #[allow(dead_code)]
    inner: HttpInner,
}

impl WikiClient {
    /// Construct a new client. Normally obtained via
    /// [`crate::ApiClient::wiki`] rather than directly.
    pub fn new(inner: HttpInner) -> Self {
        Self { inner }
    }
}