Skip to main content

somatize_coordinator/
lib.rs

1// The crate is fully documented and clippy runs with -D warnings in CI,
2// so this makes "public API without docs" a build error from here on.
3#![warn(missing_docs)]
4
5//! Coordinator service for Soma distributed workers.
6//!
7//! Manages worker registration, health monitoring, load balancing,
8//! and plan routing. Separate from the worker process itself.
9
10pub mod registry;
11pub mod server;
12
13pub use registry::{WorkerRegistry, WorkerStatus};
14pub use server::{coordinator_router, serve_coordinator};