rskit_storage_gcs/lib.rs
1//! Google Cloud Storage backend for [`rskit_storage`].
2//!
3//! This crate implements [`rskit_storage::store::FileStore`] without adding Google Cloud dependencies to the core storage crate.
4//! Importing it has no side effects; applications call [`register`] with the registry they own.
5
6#![warn(missing_docs)]
7
8mod store;
9
10pub use store::{Config, register};