blob: 51b6c6ccfff9c7ac6593d87d2776608aa5aa312d (
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(crate) use index::{IndexFilterMode, QueryContext, SearchIndex};
|