mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 03:22:24 +08:00

* cleanup dead code * add tests and rewrite publish grafanacom steps to reuse * add pkg/build tests; don't upload CDN assets on grafana releases
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
|
|
}
|