atuin-daemon 18.16.1

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