1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod v1;

pub struct BitableService {
    pub v1: v1::V1,
}

impl BitableService {
    pub fn new(config: crate::core::config::Config) -> Self {
        Self {
            v1: v1::V1::new(config),
        }
    }
}