refactor: segment residual storage api boundaries (#3905)

This commit is contained in:
Zhengchao An
2026-06-26 15:56:38 +08:00
committed by GitHub
parent ae641a33ac
commit 6efbfff2c5
14 changed files with 106 additions and 23 deletions
+12
View File
@@ -17,3 +17,15 @@
pub(crate) use rustfs_ecstore::api::erasure::{
BitrotReader, BitrotWriter, BitrotWriterWrapper, CustomWriter, Erasure, calc_shard_size,
};
pub(crate) mod comparison {
pub(crate) use super::Erasure;
}
pub(crate) mod erasure {
pub(crate) use super::{BitrotReader, BitrotWriter, Erasure, calc_shard_size};
}
pub(crate) mod single_block_non_inline {
pub(crate) use super::{BitrotWriterWrapper, CustomWriter, Erasure};
}