References: - S3 client: https://docs.aws.amazon.com/code-library/latest/ug/go_2_s3_code_examples.html - Transfer Manager: https://aws.github.io/aws-sdk-go-v2/docs/sdk-utilities/s3/
| 15 | // - Transfer Manager: https://aws.github.io/aws-sdk-go-v2/docs/sdk-utilities/s3/ |
| 16 | |
| 17 | type Bucket struct { |
| 18 | S3Client *s3.Client |
| 19 | } |
| 20 | |
| 21 | const ( |
| 22 | uploadPartSize = 8 * 1024 * 1024 // 8 MiB |
nothing calls this directly
no outgoing calls
no test coverage detected