diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-06-11 00:54:30 +0200 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-06-11 00:54:30 +0200 |
| commit | 5c39e7cf284a1f6e9a1657f2deb44e359fc47eb8 (patch) | |
| tree | c64baa8d5866c8e339eaf660dd3f94f30a3f7d8a /crates/atuin-daemon/src/control | |
| parent | chore: Somewhat simplify sync code (diff) | |
| download | atuin-5c39e7cf284a1f6e9a1657f2deb44e359fc47eb8.zip | |
chore: Move everything into one big crate
That helps remove duplicated code and rustc/cargo will now also show
dead code correctly.
Diffstat (limited to '')
| -rw-r--r-- | crates/turtle/src/atuin_daemon/control/mod.rs (renamed from crates/atuin-daemon/src/control/mod.rs) | 0 | ||||
| -rw-r--r-- | crates/turtle/src/atuin_daemon/control/service.rs (renamed from crates/atuin-daemon/src/control/service.rs) | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crates/atuin-daemon/src/control/mod.rs b/crates/turtle/src/atuin_daemon/control/mod.rs index afb29c57..afb29c57 100644 --- a/crates/atuin-daemon/src/control/mod.rs +++ b/crates/turtle/src/atuin_daemon/control/mod.rs diff --git a/crates/atuin-daemon/src/control/service.rs b/crates/turtle/src/atuin_daemon/control/service.rs index 2e7403ce..cb2ff74e 100644 --- a/crates/atuin-daemon/src/control/service.rs +++ b/crates/turtle/src/atuin_daemon/control/service.rs @@ -3,7 +3,7 @@ //! This gRPC service allows external processes (like CLI commands) to inject //! events into the daemon's event bus. -use atuin_client::history::HistoryId; +use crate::atuin_client::history::HistoryId; use tonic::{Request, Response, Status}; use tracing::{Level, info, instrument}; @@ -12,7 +12,7 @@ use super::{ control_server::{Control, ControlServer}, send_event_request::Event, }; -use crate::{daemon::DaemonHandle, events::DaemonEvent}; +use crate::atuin_daemon::{daemon::DaemonHandle, events::DaemonEvent}; /// The Control gRPC service. /// |
