aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-daemon/src/search/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/atuin-daemon/src/search/mod.rs')
-rw-r--r--crates/atuin-daemon/src/search/mod.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/crates/atuin-daemon/src/search/mod.rs b/crates/atuin-daemon/src/search/mod.rs
deleted file mode 100644
index 4d261956..00000000
--- a/crates/atuin-daemon/src/search/mod.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-//! Search module for the daemon gRPC search service.
-//!
-//! This module provides fuzzy search over command history using Nucleo.
-
-mod index;
-
-// Include the generated proto code
-tonic::include_proto!("search");
-
-// Re-export the service and index
-pub use index::{IndexFilterMode, QueryContext, SearchIndex};