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/components/sync.rs | |
| 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/components/sync.rs (renamed from crates/atuin-daemon/src/components/sync.rs) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/atuin-daemon/src/components/sync.rs b/crates/turtle/src/atuin_daemon/components/sync.rs index 6e486250..c76fb71b 100644 --- a/crates/atuin-daemon/src/components/sync.rs +++ b/crates/turtle/src/atuin_daemon/components/sync.rs @@ -9,9 +9,9 @@ use rand::Rng; use tokio::sync::mpsc; use tokio::time::{self, MissedTickBehavior}; -use atuin_client::{history::store::HistoryStore, record::sync, settings::Settings}; +use crate::atuin_client::{history::store::HistoryStore, record::sync, settings::Settings}; -use crate::{ +use crate::atuin_daemon::{ daemon::{Component, DaemonHandle}, events::DaemonEvent, }; |
