use openlark_core::config::Config;
pub mod list;
#[derive(Debug, Clone)]
pub struct AdminDeptStatService {
config: Config,
}
impl AdminDeptStatService {
pub fn new(config: Config) -> Self {
Self { config }
}
pub fn list(&self) -> list::ListAdminDeptStatRequestBuilder {
list::ListAdminDeptStatRequestBuilder::new(self.config.clone())
}
}