omni_dev/daemon/services/mod.rs
1//! Built-in daemon services.
2//!
3//! Each submodule provides one [`DaemonService`](super::service::DaemonService)
4//! implementation: [`bridge`] hosts the browser bridge and [`snowflake`] hosts
5//! the Snowflake query engine (the real services); [`echo`] is a trivial test
6//! service used by the framework's own tests.
7
8pub mod bridge;
9pub mod echo;
10pub mod snowflake;