Skip to main content

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, and [`worktrees`] tracks the repos/worktrees open
6//! across every VS Code window (the real services); [`echo`] is a trivial test
7//! service used by the framework's own tests.
8
9pub mod bridge;
10pub mod echo;
11pub mod snowflake;
12pub mod worktrees;