open_lark/service/cloud_docs/bitable/v1/app_table/
mod.rs

1use crate::core::config::Config;
2
3pub mod batch_create;
4pub mod batch_delete;
5pub mod create;
6pub mod delete;
7pub mod list;
8pub mod patch;
9
10pub use batch_create::*;
11pub use batch_delete::*;
12pub use create::*;
13pub use delete::*;
14pub use list::*;
15pub use patch::*;
16
17/// 数据表服务
18pub struct AppTableService {
19    config: Config,
20}
21
22impl AppTableService {
23    pub fn new(config: Config) -> Self {
24        Self { config }
25    }
26}