//! Deprecated RaftNetwork trait stub.
//!
//! This module provides a deprecated trait directing users to use
//! the `openraft-legacy` crate for the v1 network API.
use crateRaftTypeConfig;
/// **REMOVED**: Use `openraft_legacy::RaftNetwork` instead.
///
/// The `RaftNetwork` trait has been moved to the `openraft-legacy` crate.
///
/// # Migration
///
/// Add to `Cargo.toml`:
/// ```toml
/// [dependencies]
/// openraft-legacy = "0.10"
/// ```
///
/// Update imports:
/// ```ignore
/// use openraft_legacy::network_v1::RaftNetwork;
/// ```