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:
Eitan Seri-Levi
2025-01-23 09:12:16 +07:00
committed by GitHub
parent 266b241123
commit a1b7d616b4
38 changed files with 1479 additions and 650 deletions

View File

@@ -0,0 +1,5 @@
pub mod interface;
#[cfg(feature = "leveldb")]
pub mod leveldb_impl;
#[cfg(feature = "redb")]
pub mod redb_impl;