Skip to main content

faucet_cli/replication/
mod.rs

1//! `faucet replicate` — consistent snapshot → CDC streaming handoff.
2//!
3//! A CLI-level orchestration layer (like `schedule`/`serve`) over
4//! `expand` + `executor::run_expanded`. See
5//! `docs/superpowers/specs/2026-06-13-replication-snapshot-cdc-handoff-design.md`.
6
7pub mod compiled;
8pub mod orchestrator;
9pub mod spec;
10pub mod state;
11
12pub use orchestrator::{ReplicationOptions, run_replication};