PublishedStorage abstracts published files hosted on GCS.
| 21 | |
| 22 | // PublishedStorage abstracts published files hosted on GCS. |
| 23 | type PublishedStorage struct { |
| 24 | client *storage.Client |
| 25 | bucket *storage.BucketHandle |
| 26 | bucketName string |
| 27 | prefix string |
| 28 | acl string |
| 29 | storageClass string |
| 30 | encryptionKey string |
| 31 | disableMultiDel bool |
| 32 | debug bool |
| 33 | pathCache map[string]string |
| 34 | } |
| 35 | |
| 36 | var ( |
| 37 | _ aptly.PublishedStorage = (*PublishedStorage)(nil) |
nothing calls this directly
no outgoing calls
no test coverage detected