reth/cli/mod.rs
1//! CLI definition and entrypoint to executable
2
3/// Re-export of the [`reth_node_core`] types specifically in the `cli` module.
4///
5/// This is re-exported because the types in `reth_node_core::cli` originally existed in
6/// `reth::cli` but were moved to the [`reth_node_core`] crate. This re-export avoids a
7/// breaking change.
8pub use crate::core::cli::*;
9
10/// Re-export of the [`reth_ethereum_cli`] types specifically in the `interface` module.
11///
12/// This is re-exported because the types in [`reth_ethereum_cli::interface`] originally
13/// existed in `reth::cli` but were moved to the [`reth_ethereum_cli`] crate. This re-export
14/// avoids a breaking change.
15pub use reth_ethereum_cli::interface::*;