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