openlark-docs 0.15.0

飞书开放平台云文档服务模块 - 文档、表格、知识库API (202 APIs, 100% 覆盖,不含旧版本)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Wiki V2 API 模块
pub mod space;
pub mod task;

// 导出数据模型
pub mod models;

// 导出数据模型
pub use models::{
    WikiSearchResult, WikiSpace, WikiSpaceMember, WikiSpaceNode, WikiSpaceSetting, WikiTask,
};

// 导出API服务 - 使用通配符导出space模块的所有内容
#[allow(deprecated)]
pub use space::*;