omni_dev/daemon/services.rs
1//! Built-in daemon services.
2//!
3//! Each submodule provides one [`DaemonService`](super::service::DaemonService)
4//! implementation: [`bridge`] hosts the browser bridge, [`snowflake`] hosts the
5//! Snowflake query engine, [`worktrees`] tracks the repos/worktrees open across
6//! every VS Code window, and [`sessions`] tracks the running Claude Code sessions
7//! across every terminal and window (the real services); [`echo`] is a trivial
8//! test service used by the framework's own tests.
9
10pub mod bridge;
11pub mod echo;
12pub mod sessions;
13pub mod snowflake;
14pub mod worktrees;