blob: afb29c57b9c5ae10a36fc54063b8373a581a84e2 (
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 use service::ControlService;
|