solana/runtime/src/tiered_storage.rs

12 lines
233 B
Rust
Raw Normal View History

pub mod byte_block;
pub mod error;
pub mod file;
pub mod footer;
pub mod hot;
pub mod meta;
pub mod mmap_utils;
use crate::tiered_storage::error::TieredStorageError;
pub type TieredStorageResult<T> = Result<T, TieredStorageError>;