aboutsummaryrefslogtreecommitdiffstats
path: root/crates/daemon/src/components/mod.rs
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-07-20 15:13:12 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-07-20 15:13:12 +0200
commit1594307d9cd819b1ed739fa1ec048c6b27e6f4b0 (patch)
tree39b427e3cd6390bc218136454b809450016e0037 /crates/daemon/src/components/mod.rs
parentchore: Commit (diff)
downloadatuin-1594307d9cd819b1ed739fa1ec048c6b27e6f4b0.zip
chore: Commit
Diffstat (limited to 'crates/daemon/src/components/mod.rs')
-rw-r--r--crates/daemon/src/components/mod.rs20
1 files changed, 0 insertions, 20 deletions
diff --git a/crates/daemon/src/components/mod.rs b/crates/daemon/src/components/mod.rs
deleted file mode 100644
index 0b0319df..00000000
--- a/crates/daemon/src/components/mod.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-//! Daemon components.
-//!
-//! Components are the building blocks of the daemon. Each component handles
-//! a specific domain and can:
-//!
-//! - Expose gRPC services
-//! - React to events
-//! - Spawn background tasks
-//!
-//! Available components:
-//!
-//! - [`history::HistoryComponent`]: Command history lifecycle management
-//! - [`semantic::SemanticComponent`]: In-memory semantic command captures
-//! - [`sync::SyncComponent`]: Cloud sync
-
-pub(crate) mod history;
-pub(crate) mod sync;
-
-pub(crate) use sync::SyncComponent;
-pub(crate) use history::HistoryComponent;