diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-06-11 01:05:07 +0200 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-06-11 01:05:07 +0200 |
| commit | 7a9e229d5f4913d1a48c92615bcb3234f5dcfd33 (patch) | |
| tree | 21eacdafe35d4e36918dcac39688678f87ea4b0c /crates/turtle/src/atuin_daemon | |
| parent | chore: Move everything into one big crate (diff) | |
| download | atuin-7a9e229d5f4913d1a48c92615bcb3234f5dcfd33.zip | |
chore: Restore db migrations
Diffstat (limited to 'crates/turtle/src/atuin_daemon')
| -rw-r--r-- | crates/turtle/src/atuin_daemon/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/turtle/src/atuin_daemon/mod.rs b/crates/turtle/src/atuin_daemon/mod.rs index b05eb95c..aff33307 100644 --- a/crates/turtle/src/atuin_daemon/mod.rs +++ b/crates/turtle/src/atuin_daemon/mod.rs @@ -14,14 +14,14 @@ pub mod semantic; pub mod server; // Re-export core daemon types for convenience -pub use daemon::{Component, Daemon, DaemonBuilder, DaemonHandle}; +pub use daemon::Daemon; pub use events::DaemonEvent; // Re-export components pub use components::{HistoryComponent, SearchComponent, SemanticComponent, SyncComponent}; // Re-export client helpers -pub use client::{ControlClient, SemanticClient, emit_event, emit_event_with_settings}; +pub use client::SemanticClient; /// Boot the daemon using the new component-based architecture. /// |
