2025-04-01 10:38:02 +09:00

14 lines
177 B
Go

package validation
type ArtifactType int
const (
ArtifactTypeDockerHub ArtifactType = iota
ArtifactTypeGCSObject
)
type Artifact struct {
Type ArtifactType
URL string
}