mirror of
https://github.com/rustfs/rustfs.git
synced 2026-09-04 11:15:39 +00:00
refactor: move ecstore owner layout modules (#3932)
This commit is contained in:
@@ -15,36 +15,51 @@
|
||||
|
||||
extern crate core;
|
||||
|
||||
#[path = "diagnostics/admin_server_info.rs"]
|
||||
mod admin_server_info;
|
||||
pub mod api;
|
||||
#[path = "services/batch_processor.rs"]
|
||||
mod batch_processor;
|
||||
#[path = "io_support/bitrot.rs"]
|
||||
mod bitrot;
|
||||
mod bucket;
|
||||
mod cache_value;
|
||||
mod cluster;
|
||||
#[path = "io_support/compress.rs"]
|
||||
mod compress;
|
||||
mod config;
|
||||
mod data_movement;
|
||||
#[path = "data_movement/backpressure.rs"]
|
||||
mod data_movement_backpressure;
|
||||
mod data_usage;
|
||||
mod disk;
|
||||
#[path = "layout/disks_layout_facade.rs"]
|
||||
mod disks_layout;
|
||||
#[path = "layout/endpoints_facade.rs"]
|
||||
mod endpoints;
|
||||
mod erasure_codec;
|
||||
mod erasure_coding;
|
||||
mod error;
|
||||
#[path = "diagnostics/get.rs"]
|
||||
mod get_diagnostics;
|
||||
#[path = "runtime/global.rs"]
|
||||
mod global;
|
||||
pub(crate) mod layout;
|
||||
#[path = "services/metrics_realtime.rs"]
|
||||
mod metrics_realtime;
|
||||
#[path = "services/notification_sys.rs"]
|
||||
mod notification_sys;
|
||||
mod object_api;
|
||||
#[path = "core/pools.rs"]
|
||||
mod pools;
|
||||
mod rebalance;
|
||||
#[path = "io_support/rio.rs"]
|
||||
mod rio;
|
||||
mod rpc;
|
||||
#[path = "runtime/sources.rs"]
|
||||
mod runtime_sources;
|
||||
mod set_disk;
|
||||
#[path = "core/sets.rs"]
|
||||
mod sets;
|
||||
mod storage_api_contracts;
|
||||
mod store;
|
||||
@@ -58,10 +73,13 @@ mod store_utils;
|
||||
// pub mod checksum;
|
||||
mod client;
|
||||
mod event;
|
||||
#[path = "services/event_notification.rs"]
|
||||
mod event_notification;
|
||||
#[cfg(test)]
|
||||
#[path = "core/pools_test.rs"]
|
||||
mod pools_test;
|
||||
#[cfg(test)]
|
||||
#[path = "core/store_test.rs"]
|
||||
mod store_test;
|
||||
mod tier;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user