Files
lighthouse/beacon_node/store/src/database.rs
Eitan Seri-Levi a1b7d616b4 Modularize beacon node backend (#4718)
#4669


  Modularize the beacon node backend to make it easier to add new database implementations
2025-01-23 02:12:16 +00:00

6 lines
113 B
Rust

pub mod interface;
#[cfg(feature = "leveldb")]
pub mod leveldb_impl;
#[cfg(feature = "redb")]
pub mod redb_impl;