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;
9
10pub use config::{GcsFileFormat, GcsSourceConfig};
11pub use faucet_common_gcs::GcsCredentials;
12pub use stream::GcsSource;