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