feature/upstream-service #13

Merged
GW_MC merged 43 commits from feature/upstream-service into master 2026-01-01 10:49:32 +08:00
Showing only changes of commit fea205cba8 - Show all commits

View File

@@ -7,5 +7,5 @@ use axum::Router;
use crate::routes::AppState;
pub fn get_nginx_router(state: Arc<AppState>) -> Router {
Router::new().nest("/upstream", upstream::get_upstream_router(state.clone()))
Router::new().merge(upstream::get_upstream_router(state.clone()))
}