// Copyright 2024-2026 Reflective Labs
// SPDX-License-Identifier: MIT
//! # converge-storage
//!
//! Object storage contract types for Converge.
//!
//! Concrete builders for local filesystem, S3-compatible stores, and Google
//! Cloud Storage live in adapter extensions such as `manifold`.
//!
//! ## Storage URI Convention
//!
//! - `file:///path/to/dir` or plain paths → local filesystem
//! - `s3://bucket` → S3-compatible (AWS, `MinIO`, `RustFS`)
//! - `gs://bucket` → Google Cloud Storage
//!
//! Object key prefixes are configured separately via [`StorageConfig::prefix`].
//!
pub use StorageConfig;
pub use StorageError;
pub use StorageUri;
pub use Path as ObjectPath;
pub use ;