blob: 2306851911b29e997129ce428c6da6b50594ae63 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
//! Control module for external event injection.
//!
//! This module provides the gRPC service that allows external processes
//! (like CLI commands) to inject events into the daemon's event bus.
mod service;
// Include the generated proto code
tonic::include_proto!("control");
// Re-export the service
pub(crate) use service::ControlService;
|