mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-13 08:36:54 +00:00
2aca1f77af
* fix tip remote tier error * fix transitioned_object * fix filemeta * add GCS R2 * add aliyun tencent huaweicloud azure gcs r2 backend tier * fix signer * change azure to s3 Co-authored-by: houseme <housemecn@gmail.com> Co-authored-by: loverustfs <155562731+loverustfs@users.noreply.github.com>
31 lines
989 B
Rust
31 lines
989 B
Rust
// Copyright 2024 RustFS Team
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
pub mod tier;
|
|
pub mod tier_admin;
|
|
pub mod tier_config;
|
|
pub mod tier_gen;
|
|
pub mod tier_handlers;
|
|
pub mod warm_backend;
|
|
pub mod warm_backend_aliyun;
|
|
pub mod warm_backend_azure;
|
|
pub mod warm_backend_gcs;
|
|
pub mod warm_backend_huaweicloud;
|
|
pub mod warm_backend_minio;
|
|
pub mod warm_backend_r2;
|
|
pub mod warm_backend_rustfs;
|
|
pub mod warm_backend_s3;
|
|
pub mod warm_backend_s3sdk;
|
|
pub mod warm_backend_tencent;
|