open-lark 0.14.0

Enterprise-grade Lark/Feishu Open API SDK with comprehensive Chinese documentation and advanced error handling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod system_status;

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

/// Personal Settings API v1版本服务
pub struct V1 {
    /// 系统状态服务
    pub system_status: system_status::SystemStatusService,
}

impl V1 {
    pub fn new(config: Config) -> Self {
        Self {
            system_status: system_status::SystemStatusService::new(config),
        }
    }
}