aboutsummaryrefslogtreecommitdiffstats
path: root/crates/turtle/src/atuin_daemon/generated.rs
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-06-13 00:50:54 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-06-13 00:50:54 +0200
commit6723829a3398b3c9dd6dc6ae79124f46000606ee (patch)
treea1ec535eddd711a4557e4bcc5b94382c3623504c /crates/turtle/src/atuin_daemon/generated.rs
parentchore(treewide): Cleanup themes (diff)
downloadatuin-6723829a3398b3c9dd6dc6ae79124f46000606ee.zip
chore(treewide): Remove `cargo` warnings to 0
There are still the `clippy` warnings, but they are for a future date.
Diffstat (limited to 'crates/turtle/src/atuin_daemon/generated.rs')
-rw-r--r--crates/turtle/src/atuin_daemon/generated.rs38
1 files changed, 38 insertions, 0 deletions
diff --git a/crates/turtle/src/atuin_daemon/generated.rs b/crates/turtle/src/atuin_daemon/generated.rs
new file mode 100644
index 00000000..e43f7523
--- /dev/null
+++ b/crates/turtle/src/atuin_daemon/generated.rs
@@ -0,0 +1,38 @@
+#![allow(
+ unreachable_pub,
+ unused_qualifications,
+ 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");
+}
+
+/// Search module for the daemon gRPC search service.
+///
+/// This module provides fuzzy search over command history using Nucleo.
+pub(crate) mod search {
+ // Include the generated proto code
+ tonic::include_proto!("search");
+}
+
+/// History module for the daemon gRPC history service.
+///
+/// This module contains the proto-generated types for the history gRPC service.
+pub(crate) mod history {
+ // Include the generated proto code
+ tonic::include_proto!("history");
+}
+
+/// 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.
+pub(crate) mod control {
+ // Include the generated proto code
+ tonic::include_proto!("control");
+
+ // Re-export the service
+ pub(crate) use crate::atuin_daemon::control::ControlService;
+}