mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-30 12:47:05 +00:00
#4669 Modularize the beacon node backend to make it easier to add new database implementations
6 lines
113 B
Rust
6 lines
113 B
Rust
pub mod interface;
|
|
#[cfg(feature = "leveldb")]
|
|
pub mod leveldb_impl;
|
|
#[cfg(feature = "redb")]
|
|
pub mod redb_impl;
|