aboutsummaryrefslogtreecommitdiffstats
path: root/crates/daemon/src/api/generated.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/daemon/src/api/generated.rs')
-rw-r--r--crates/daemon/src/api/generated.rs28
1 files changed, 28 insertions, 0 deletions
diff --git a/crates/daemon/src/api/generated.rs b/crates/daemon/src/api/generated.rs
new file mode 100644
index 00000000..304edcd9
--- /dev/null
+++ b/crates/daemon/src/api/generated.rs
@@ -0,0 +1,28 @@
+#![expect(
+ unreachable_pub,
+ unused_qualifications,
+ clippy::doc_markdown,
+ clippy::default_trait_access,
+ clippy::too_many_lines,
+ clippy::trivially_copy_pass_by_ref,
+ clippy::allow_attributes,
+ clippy::derive_partial_eq_without_eq,
+ reason = "All of these lints are triggered by the generated code"
+)]
+
+/// Semantic command capture gRPC service types.
+pub(crate) mod semantic {
+ tonic::include_proto!("semantic");
+}
+
+/// History module for the daemon gRPC history service.
+///
+/// This module contains the proto-generated types for the history gRPC service.
+pub(crate) mod history {
+ tonic::include_proto!("history");
+}
+
+/// Control module for external control.
+pub(crate) mod control {
+ tonic::include_proto!("control");
+}