aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-daemon/src/components/mod.rs
diff options
context:
space:
mode:
authorMichelle Tilley <michelle@michelletilley.net>2026-06-08 09:12:45 -0700
committerGitHub <noreply@github.com>2026-06-08 09:12:45 -0700
commitbcdf8c8cde31e826000f1b2d6eeaebdd865a07c1 (patch)
treef62f66e4dede22ce73ea5dafe69881d6af9b3101 /crates/atuin-daemon/src/components/mod.rs
parentchore(deps): bump debian from bookworm-20260421-slim to bookworm-20260518-sli... (diff)
downloadatuin-bcdf8c8cde31e826000f1b2d6eeaebdd865a07c1.zip
feat: Capture command output + expose to new `atuin_output` tool (#3510)
Diffstat (limited to 'crates/atuin-daemon/src/components/mod.rs')
-rw-r--r--crates/atuin-daemon/src/components/mod.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/atuin-daemon/src/components/mod.rs b/crates/atuin-daemon/src/components/mod.rs
index 5950d5d5..447e31df 100644
--- a/crates/atuin-daemon/src/components/mod.rs
+++ b/crates/atuin-daemon/src/components/mod.rs
@@ -11,12 +11,15 @@
//!
//! - [`history::HistoryComponent`]: Command history lifecycle management
//! - [`search::SearchComponent`]: Fuzzy search over history
+//! - [`semantic::SemanticComponent`]: In-memory semantic command captures
//! - [`sync::SyncComponent`]: Cloud sync
pub mod history;
pub mod search;
+pub mod semantic;
pub mod sync;
pub use history::HistoryComponent;
pub use search::SearchComponent;
+pub use semantic::SemanticComponent;
pub use sync::SyncComponent;