14 lines
177 B
Go
14 lines
177 B
Go
package validation
|
|
|
|
type ArtifactType int
|
|
|
|
const (
|
|
ArtifactTypeDockerHub ArtifactType = iota
|
|
ArtifactTypeGCSObject
|
|
)
|
|
|
|
type Artifact struct {
|
|
Type ArtifactType
|
|
URL string
|
|
}
|