添加qiming-rcoder模块

This commit is contained in:
Codex
2026-06-01 13:54:52 +08:00
parent 8092c4b1f8
commit 4b1a580132
539 changed files with 151650 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
//! Handler 工具模块
//!
//! 提供 handler 层共享的工具函数和常量。
mod grpc_addr;
mod i18n_extractors;
mod locale;
mod paths;
pub use grpc_addr::{
extract_grpc_addr, extract_grpc_addr_with_port, get_realtime_container_ip,
};
pub use i18n_extractors::{I18nJson, I18nJsonOrQuery, I18nPath, I18nQuery, require_field};
pub use locale::get_locale_from_headers;
pub use paths::{COMPUTER_WORKSPACE_ROOT, WORKSPACE_ROOT, build_workspace_path, build_computer_workspace_path, project_dir, user_dir};