mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +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;
|