Files
lighthouse/beacon_node/sync/src/lib.rs
2019-03-04 18:31:01 +11:00

12 lines
225 B
Rust

/// Syncing for lighthouse.
///
/// Stores the various syncing methods for the beacon chain.
mod simple_sync;
pub use simple_sync::SimpleSync;
/// Currently implemented sync methods.
pub enum SyncMethod {
SimpleSync,
}