mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-02 09:20:22 +08:00
refactor: 拆分 gateway 单体为独立 crate,新增 systemd 部署方案
将 gateway 内部的 model-fetch、provider-transport、scheduler-core、 usage-runtime、video-tasks-core 模块提取为独立 crate;重构 gateway 内部模块结构(state/router/cache/data/query 等);移除大量遗留模块 文件;新增 systemd 二进制部署骨架及相关文档;更新前端 usage 相关 API 和组件。
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
use axum::routing::any;
|
||||
use axum::Router;
|
||||
|
||||
use crate::gateway::{proxy_request, AppState};
|
||||
use crate::{handlers::proxy::proxy_request, state::AppState};
|
||||
|
||||
pub(crate) fn mount_admin_routes(router: Router<AppState>) -> Router<AppState> {
|
||||
router.route("/api/admin/{*admin_path}", any(proxy_request))
|
||||
|
||||
@@ -1,9 +1,13 @@
|
||||
use axum::routing::{any, get, post};
|
||||
use axum::Router;
|
||||
|
||||
use crate::gateway::{
|
||||
proxy_request, proxy_tunnel, relay_request, AppState, PROXY_TUNNEL_PATH, TUNNEL_HEARTBEAT_PATH,
|
||||
TUNNEL_NODE_STATUS_PATH, TUNNEL_RELAY_PATH_PATTERN,
|
||||
use crate::{
|
||||
handlers::proxy::proxy_request,
|
||||
state::AppState,
|
||||
tunnel::{
|
||||
proxy_tunnel, relay_request, PROXY_TUNNEL_PATH, TUNNEL_HEARTBEAT_PATH,
|
||||
TUNNEL_NODE_STATUS_PATH, TUNNEL_RELAY_PATH_PATTERN,
|
||||
},
|
||||
};
|
||||
|
||||
pub(crate) fn mount_internal_routes(router: Router<AppState>) -> Router<AppState> {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
use axum::routing::{any, get};
|
||||
use axum::Router;
|
||||
|
||||
use crate::gateway::{proxy_request, AppState};
|
||||
use crate::{handlers::proxy::proxy_request, state::AppState};
|
||||
|
||||
pub(crate) fn mount_oauth_routes(router: Router<AppState>) -> Router<AppState> {
|
||||
router
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
use axum::routing::get;
|
||||
use axum::Router;
|
||||
|
||||
use crate::gateway::{proxy_request, AppState};
|
||||
use crate::{handlers::proxy::proxy_request, state::AppState};
|
||||
|
||||
pub(crate) fn mount_public_support_routes(router: Router<AppState>) -> Router<AppState> {
|
||||
router
|
||||
|
||||
Reference in New Issue
Block a user