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
// 用户邮箱别名管理模块 - 占位符实现
use crate::core::config::Config;

pub struct UserMailboxAliasService {
    pub config: Config,
}

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