polyc_runtime/lib.rs
1//! Shared Unix-coherence scaffolding for polychrome binaries (PRD ยง11):
2//! structured logging, a health/metrics side-server, and signal-driven graceful
3//! shutdown. Used by both the control plane and the harness so the two binaries
4//! behave identically under Kubernetes.
5
6pub mod health;
7pub mod observability;
8pub mod propagation;
9pub mod signals;
10pub mod supervise;