mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-06 21:33:14 +00:00
45 lines
1.4 KiB
Rust
45 lines
1.4 KiB
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.
|
|
|
|
// #730: S3 client compatibility models are kept while ECStore callers move to narrower facades.
|
|
#![allow(dead_code)]
|
|
|
|
pub mod admin_handler_utils;
|
|
pub mod api_bucket_policy;
|
|
pub mod api_error_response;
|
|
pub mod api_get_object;
|
|
pub mod api_get_object_acl;
|
|
pub mod api_get_object_attributes;
|
|
pub mod api_get_object_file;
|
|
pub mod api_get_options;
|
|
pub mod api_list;
|
|
pub mod api_put_object;
|
|
pub mod api_put_object_common;
|
|
pub mod api_put_object_multipart;
|
|
pub mod api_put_object_streaming;
|
|
pub mod api_remove;
|
|
pub mod api_restore;
|
|
pub mod api_s3_datatypes;
|
|
pub mod api_stat;
|
|
pub mod bucket_cache;
|
|
pub mod checksum;
|
|
pub mod constants;
|
|
pub mod credentials;
|
|
pub mod object_api_utils;
|
|
pub mod object_handlers_common;
|
|
pub(crate) mod runtime_sources;
|
|
pub mod signer_error;
|
|
pub mod transition_api;
|
|
pub mod utils;
|