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

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