//! 核心服务模块 //! //! 包含文档处理、翻译等功能 pub mod document; pub mod translation; pub use document::DocumentEngine; pub use translation::TranslationService;