open-lark 0.13.0

Enterprise-grade Lark/Feishu Open API SDK with comprehensive Chinese documentation and advanced error handling
Documentation
use std::sync::Arc;

use crate::core::config::Config;

pub use v2::V2;

pub mod v2;

pub struct WikiService {
    /// v2 API
    pub v2: V2,
}

impl WikiService {
    pub fn new(config: Arc<Config>) -> Self {
        Self {
            v2: V2::new((*config).clone()),
        }
    }
}