refactor: 拆分 admin handler 大文件为模块目录,消除 shared.rs 反模式

- endpoint_keys/pool/architecture 等大文件拆分为独立模块目录
- 删除 crud/query/strategy/system 中的 shared.rs,内容归位到各自模块
- endpoints_admin/models/oauth/write 等模块拆出 payloads/responses/support 子文件
- system/core 下多个 *_routes.rs 合并到 system_routes.rs
- 更新 refactor-execution-plan 文档进度
This commit is contained in:
fawney19
2026-04-07 12:15:19 +08:00
parent 29055c575f
commit 4fb9882b54
109 changed files with 8151 additions and 7047 deletions

View File

@@ -12,7 +12,7 @@ use crate::execution_runtime::{
maybe_build_local_video_success_outcome, resolve_local_sync_error_background_report_kind,
resolve_local_sync_success_background_report_kind,
};
use crate::handlers::admin::provider::oauth::build_internal_control_error_response;
use crate::handlers::admin::provider::oauth::refresh::build_internal_control_error_response;
use crate::handlers::shared::{
unix_secs_to_rfc3339, InternalTunnelHeartbeatRequest, InternalTunnelNodeStatusRequest,
};

View File

@@ -1,4 +1,4 @@
use super::admin::provider::oauth::build_internal_control_error_response;
use super::admin::provider::oauth::refresh::build_internal_control_error_response;
mod gateway_helpers;
use self::gateway_helpers::*;