1#![cfg_attr(docsrs, feature(doc_cfg))] 2 3//! Google Cloud Storage sink connector. 4 5mod config; 6mod sink; 7 8pub use config::{GcsSinkConfig, GcsSinkFormat}; 9pub use faucet_common_gcs::GcsCredentials; 10pub use sink::GcsSink;