aboutsummaryrefslogtreecommitdiffstats
path: root/crates/daemon/src/components/mod.rs
diff options
context:
space:
mode:
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;