2020-10-01 22:06:15 +01:00
..
2020-10-01 22:06:15 +01:00
2020-10-01 22:06:15 +01:00
2020-10-01 22:06:15 +01:00
2020-10-01 22:06:15 +01:00
2020-10-01 22:06:15 +01:00
2020-10-01 22:06:15 +01:00
2020-10-01 22:06:15 +01:00
2020-10-01 22:06:15 +01:00
2020-10-01 22:06:15 +01:00
2020-10-01 22:06:15 +01:00
2020-10-01 22:06:15 +01:00

Cloud Storage GoDoc

Example Usage

First create a storage.Client to use throughout your application:

client, err := storage.NewClient(ctx)
if err != nil {
	log.Fatal(err)
}
// Read the object1 from bucket.
rc, err := client.Bucket("bucket").Object("object1").NewReader(ctx)
if err != nil {
	log.Fatal(err)
}
defer rc.Close()
body, err := ioutil.ReadAll(rc)
if err != nil {
	log.Fatal(err)
}