mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-14 18:32:42 +00:00
Modularize beacon node backend (#4718)
#4669 Modularize the beacon node backend to make it easier to add new database implementations
This commit is contained in:
5
beacon_node/store/src/database.rs
Normal file
5
beacon_node/store/src/database.rs
Normal file
@@ -0,0 +1,5 @@
|
||||
pub mod interface;
|
||||
#[cfg(feature = "leveldb")]
|
||||
pub mod leveldb_impl;
|
||||
#[cfg(feature = "redb")]
|
||||
pub mod redb_impl;
|
||||
Reference in New Issue
Block a user