github.com/sandwich-go/boost@v1.3.29/misc/cloud/README.md (about) 1 # cloud 2 3 对象存储 4 5 - 支持 `s3`、`qcloud`、`gcs` 对象存储操作 6 7 8 # 例子 9 10 ```go 11 sb := MustNew(StorageTypeS3, key, secret, "xxxx", WithRegion("us-east-2")) 12 err := sb.PutObject(context.Background(), src, strings.NewReader(str), len(str)) 13 xpanic.WhenError(err) 14 fmt.Println("OK") 15 ``` 16 17 Output: 18 ```text 19 OK 20 ```