MCPcopy Index your code
hub / github.com/aptly-dev/aptly / PublishedStorage

Struct PublishedStorage

gcs/public.go:23–34  ·  view source on GitHub ↗

PublishedStorage abstracts published files hosted on GCS.

Source from the content-addressed store, hash-verified

21
22// PublishedStorage abstracts published files hosted on GCS.
23type 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
36var (
37 _ aptly.PublishedStorage = (*PublishedStorage)(nil)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected