gcs_reader/
lib.rs

1pub use reader::{Auth, GCSReader};
2pub use uri::GCSObjectURI;
3
4mod errors;
5mod reader;
6mod uri;
7
8#[cfg(test)]
9use std::sync::Once;
10
11#[cfg(test)]
12static INIT: Once = Once::new();
13
14#[cfg(test)]
15pub(crate) fn setup() {
16    INIT.call_once(|| {
17        color_eyre::install().unwrap();
18    });
19}