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 info;

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

/// Bot API v3版本服务
pub struct V3 {
    /// 机器人信息服务
    pub info: info::InfoService,
}

impl V3 {
    pub fn new(config: Config) -> Self {
        Self {
            info: info::InfoService::new(config),
        }
    }
}