Files
Milos Gajdos 3996413f46 Bump google storage module
Also bump the golangci version

Signed-off-by: Milos Gajdos <milosthegajdos@gmail.com>
2024-10-26 18:19:46 +01:00
..
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00
2024-10-26 18:19:46 +01:00

Cloud Storage Go Reference

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 := io.ReadAll(rc)
if err != nil {
	log.Fatal(err)
}