blob: e5e28ac7044c919807d76f1a46e3e5046e6217d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#![expect(
unused_qualifications,
clippy::doc_markdown,
clippy::default_trait_access,
clippy::too_many_lines,
clippy::allow_attributes,
clippy::derive_partial_eq_without_eq,
reason = "All of these lints are triggered by the generated code"
)]
pub const DAEMON_PROTOCOL_VERSION: u32 = 1;
/// History module for the daemon gRPC history service.
///
/// This module contains the proto-generated types for the history gRPC service.
pub mod history {
tonic::include_proto!("history");
}
/// Control module for external control.
pub mod control {
tonic::include_proto!("control");
}
|