From 1594307d9cd819b1ed739fa1ec048c6b27e6f4b0 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Mon, 20 Jul 2026 15:13:12 +0200 Subject: chore: Commit --- crates/daemon/src/components/mod.rs | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 crates/daemon/src/components/mod.rs (limited to 'crates/daemon/src/components/mod.rs') 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; -- cgit v1.3.1