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