1//! CL-driven follow mode for Tempo nodes.
2//!
3//! This module provides a follow implementation that syncs from an upstream
4//! node (validator or another follower).
56mod driver;
7pub mod engine;
8pub(crate) mod resolver;
9mod stubs;
10pub mod upstream;
1112pub use engine::Config;