nodedb-cluster 0.1.1

Distributed coordination layer for NodeDB — vShards, QUIC transport, and replication
1
2
3
4
5
6
7
8
9
10
// SPDX-License-Identifier: BUSL-1.1

mod executor;
mod phases;
mod recovery;
mod tracker;

pub use executor::{MigrationExecutor, MigrationRequest, MigrationResult};
pub use recovery::recover_in_flight_migrations;
pub use tracker::{MigrationSnapshot, MigrationTracker};