diff options
Diffstat (limited to 'crates/daemon/src/generated.rs')
| -rw-r--r-- | crates/daemon/src/generated.rs | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/crates/daemon/src/generated.rs b/crates/daemon/src/generated.rs index 6620e94c..9deb4e0c 100644 --- a/crates/daemon/src/generated.rs +++ b/crates/daemon/src/generated.rs @@ -11,22 +11,14 @@ )] /// Semantic command capture gRPC service types. -pub mod semantic { +pub(crate) mod semantic { tonic::include_proto!("semantic"); } -/// Search module for the daemon gRPC search service. -/// -/// This module provides fuzzy search over command history using Nucleo. -pub mod search { - // Include the generated proto code - tonic::include_proto!("search"); -} - /// History module for the daemon gRPC history service. /// /// This module contains the proto-generated types for the history gRPC service. -pub mod history { +pub(crate) mod history { // Include the generated proto code tonic::include_proto!("history"); } @@ -35,10 +27,10 @@ pub mod history { /// /// This module provides the gRPC service that allows external processes /// (like CLI commands) to inject events into the daemon's event bus. -pub mod control { +pub(crate) mod control { // Include the generated proto code tonic::include_proto!("control"); // Re-export the service - pub use crate::control::ControlService; + pub(crate) use crate::control::ControlService; } |
