Files
mrvacommander/pkg/artifactstore/common.go
2025-05-13 19:01:30 -07:00

14 lines
349 B
Go

package artifactstore
// Restrict the keys / values for ArtifactLocation and centralize the common ones
// here
var (
AF_BUCKETNAME_RESULTS = "mrvabucket"
AF_BUCKETNAME_PACKS = "mrvabucket"
)
type ArtifactLocation struct {
Key string // location in bucket OR full location for file paths
Bucket string // which bucket: packs or results
}