Library to sync files to, from and between Google Cloud Storage buckets
This project depends on cloud-storage-rs crate. To access bucket you need to specify SERVICE_ACCOUNT environment variable which should contain path to the service account json key.
```rust let forceoverwrite = false; let sync = Sync::new(forceoverwrite);
sync.synclocalfiletogcs( "somelocalfile", BUCKET, "prefix/somefile", )?;
sync.synclocaltogcs( "/some/local/fileor_dir", BUCKET, "some/directory", )?;
sync.syncgcsto_local( BUCKET, "myprefix", "../some/directory" )?; ```