open-lark 0.13.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
use crate::core::config::Config;

pub mod create;
pub mod delete;

/// 请假日程服务
pub struct TimeoffEventService {
    pub config: Config,
}

impl TimeoffEventService {
    pub fn new(config: Config) -> Self {
        Self { config }
    }
}