Skip to main content

ethrex_storage_rollup/
lib.rs

1mod api;
2mod error;
3mod store;
4mod store_db;
5
6pub use error::RollupStoreError;
7pub use store::{EngineType as EngineTypeRollup, Store as StoreRollup};
8#[cfg(feature = "sql")]
9pub use store_db::sql::SQLStore;