Skip to content

Commit a9096a6

Browse files
committed
Fix linting
1 parent 9aea0c0 commit a9096a6

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

crates/http_server/src/lib.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ use axum::{
99
use std::sync::Arc;
1010

1111
use handler::{
12-
delete_point_handler, get_point_handler, insert_point_handler, root_handler,
13-
search_points_handler, health_handler,
12+
delete_point_handler, get_point_handler, health_handler, insert_point_handler, root_handler,
13+
search_points_handler,
1414
};
1515

1616
#[derive(Clone)]
@@ -19,7 +19,6 @@ pub struct AppState {
1919
}
2020

2121
/// Creates the HTTP router with all VectorDB routes.
22-
///
2322
/// This can be used by both the standalone http_server binary
2423
/// and the unified server binary.
2524
pub fn create_router(db: Arc<VectorDb>) -> Router {

0 commit comments

Comments
 (0)