Skip to content

Instantly share code, notes, and snippets.

@petergtz
Created June 19, 2017 10:33
Show Gist options
  • Save petergtz/b5ad4a3eb590ce55137f928dd0f0e730 to your computer and use it in GitHub Desktop.
Save petergtz/b5ad4a3eb590ce55137f928dd0f0e730 to your computer and use it in GitHub Desktop.
writer := gcpClient.Bucket("my-gcp-bucket").Object("my-object").NewWriter(context.TODO())
defer writer.Close()
_, e := io.Copy(writer, src)
if e != nil {
return errors.Wrapf(e, "Path %v", path)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment