From 3b30773adc59c873c025d0824abf0123e3df256b Mon Sep 17 00:00:00 2001 From: mohiiit Date: Tue, 7 Jan 2025 12:00:17 +0530 Subject: [PATCH] chore: removed redundant comment --- crates/orchestrator/src/routes/app_routes.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/crates/orchestrator/src/routes/app_routes.rs b/crates/orchestrator/src/routes/app_routes.rs index c31a0a0b..b6e90176 100644 --- a/crates/orchestrator/src/routes/app_routes.rs +++ b/crates/orchestrator/src/routes/app_routes.rs @@ -9,13 +9,6 @@ use axum::Router; /// - Health check endpoint at `/health` /// - Development routes under `/v1/dev` /// -/// The router is used in conjunction with job routes to form the complete API surface. -/// See the main router setup in: -/// ```rust:crates/orchestrator/src/routes/mod.rs -/// startLine: 23 -/// endLine: 35 -/// ``` -/// /// # Returns /// * `Router` - Configured application router with health and dev routes ///