open_lark/service/cloud_docs/bitable/
mod.rs1use std::sync::Arc;
2
3pub mod v1;
4
5pub struct BitableService {
6 pub v1: v1::V1,
7}
8
9impl BitableService {
10 pub fn new(config: Arc<crate::core::config::Config>) -> Self {
11 Self {
12 v1: v1::V1::new((*config).clone()),
13 }
14 }
15}