blob: 4d26195612b9c42e3d9fc3222324ff576ac9138f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
//! 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};
|