Skip to main content

faucet_source_gcs/
lib.rs

1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3//! Google Cloud Storage source connector.
4//!
5//! See the crate-level README for usage and config-field reference.
6
7mod config;
8mod stream;
9mod verify;
10
11pub use config::{GcsFileFormat, GcsSourceConfig};
12pub use faucet_common_gcs::GcsCredentials;
13pub use stream::GcsSource;