Skip to content

Commit

Permalink
chore: removed redundant comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mohiiit committed Jan 3, 2025
1 parent 4dfd785 commit ec654c9
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions crates/orchestrator/src/routes/app_routes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@ use axum::Router;
/// # Returns
/// * `Router` - Configured application router with health and dev routes
///
/// # Examples
/// ```
/// let app = app_router();
/// // Health check endpoint will respond with "UP"
/// // GET /health -> 200 OK
/// ```
pub fn app_router() -> Router {
Router::new().route("/health", get(root)).nest("/v1/dev", dev_routes())
Expand All @@ -38,11 +33,6 @@ pub fn app_router() -> Router {
/// # Returns
/// * `&'static str` - Always returns "UP"
///
/// # Examples
/// Used in tests as shown in:
/// ```rust:crates/orchestrator/src/tests/server/mod.rs
/// startLine: 12
/// endLine: 32
/// ```
async fn root() -> &'static str {
"UP"
Expand Down

0 comments on commit ec654c9

Please sign in to comment.