mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-16 18:51:23 +00:00
ad0f7a5305
Upgrade to Go 1.20.5, Hydra v2 SDK, rules-go v0.44.2 (with proper resolves), protobuf v25.3 and mass upgrade of Go dependencies. |
||
---|---|---|
.. | ||
internal | ||
acl.go | ||
bucket.go | ||
BUILD.bazel | ||
CHANGES.md | ||
client.go | ||
copy.go | ||
doc.go | ||
emulator_test.sh | ||
grpc_client.go | ||
hmac.go | ||
http_client.go | ||
iam.go | ||
invoke.go | ||
LICENSE | ||
notifications.go | ||
option.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 := io.ReadAll(rc)
if err != nil {
log.Fatal(err)
}