atuin-daemon 18.16.1

The daemon crate for Atuin
Documentation
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};