refactor: narrow test harness compatibility surfaces (#3592)

This commit is contained in:
安正超
2026-06-19 07:10:52 +08:00
committed by GitHub
parent b14e49e84e
commit b1c6578df1
27 changed files with 384 additions and 105 deletions
+15 -1
View File
@@ -15,5 +15,19 @@
pub(crate) mod ecstore {
#![allow(unused_imports)]
pub(crate) use rustfs_ecstore::{bucket, disk, rpc};
pub(crate) mod bucket {
pub(crate) mod bucket_target_sys {
pub(crate) use rustfs_ecstore::bucket::bucket_target_sys::BucketTargetSys;
}
}
pub(crate) mod disk {
pub(crate) use rustfs_ecstore::disk::{VolumeInfo, WalkDirOptions};
}
pub(crate) mod rpc {
pub(crate) use rustfs_ecstore::rpc::{
TonicInterceptor, gen_tonic_signature_interceptor, node_service_time_out_client, node_service_time_out_client_no_auth,
};
}
}