open_lark/service/cloud_docs/bitable/v1/app/mod.rs
1use crate::core::config::Config;
2
3pub mod copy;
4pub mod create;
5pub mod get;
6pub mod update;
7
8pub use copy::*;
9pub use create::*;
10pub use get::*;
11pub use update::*;
12
13/// 多维表格服务
14pub struct AppService {
15 config: Config,
16}
17
18impl AppService {
19 pub fn new(config: Config) -> Self {
20 Self { config }
21 }
22}