cfx_storage/impls/storage_manager/mod.rs
1// Copyright 2019 Conflux Foundation. All rights reserved.
2// Conflux is free software and distributed under GNU General Public License.
3// See http://www.gnu.org/licenses/
4
5pub mod single_mpt_storage_manager;
6mod snapshot_manager;
7/// Storage manager manages the lifecycle of SnapshotMPTS and DeltaMPTs.
8pub mod storage_manager;
9
10// FIXME: pub scope?
11pub use self::storage_manager::*;