Marvin Preuss
1d4ae27878
All checks were successful
continuous-integration/drone/push Build is passing
|
||
---|---|---|
.. | ||
internal/apiv2 | ||
acl.go | ||
bucket.go | ||
CHANGES.md | ||
copy.go | ||
doc.go | ||
go_mod_tidy_hack.go | ||
hmac.go | ||
iam.go | ||
invoke.go | ||
LICENSE | ||
notifications.go | ||
post_policy_v4.go | ||
reader.go | ||
README.md | ||
storage.go | ||
storage.replay | ||
writer.go |
Cloud Storage
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)
}