Files
rustfs/ecstore/src/lib.rs
T
junxiang Mu edb1e692f1 bitrot(1)
Signed-off-by: junxiang Mu <[email protected]>
2024-11-01 17:40:14 +08:00

29 lines
482 B
Rust

pub mod bitrot;
pub mod cache_value;
mod chunk_stream;
mod config;
pub mod disk;
pub mod disks_layout;
pub mod endpoints;
pub mod erasure;
pub mod error;
mod file_meta;
mod global;
mod heal;
pub mod peer;
mod quorum;
pub mod set_disk;
mod sets;
mod storage_class;
pub mod store;
pub mod store_api;
mod store_init;
mod utils;
pub mod bucket;
pub use global::is_legacy;
pub use global::new_object_layer_fn;
pub use global::set_global_endpoints;
pub use global::update_erasure_type;