mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
25 lines
634 B
Go
25 lines
634 B
Go
|
/*
|
||
|
Copyright (c) Edgeless Systems GmbH
|
||
|
|
||
|
SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
package imageversion
|
||
|
|
||
|
// This file is only used if `go build` is used instead of Bazel.
|
||
|
// It contains placeholder values for the container images so that everything
|
||
|
// still compiles.
|
||
|
|
||
|
const (
|
||
|
qemuMetadataRegistry = "placeholder"
|
||
|
qemuMetadataPrefix = "placeholder"
|
||
|
qemuMetadataName = "placeholder"
|
||
|
qemuMetadataDigest = "placeholder"
|
||
|
qemuMetadataTag = "placeholder"
|
||
|
|
||
|
libvirtRegistry = "placeholder"
|
||
|
libvirtPrefix = "placeholder"
|
||
|
libvirtName = "placeholder"
|
||
|
libvirtDigest = "placeholder"
|
||
|
libvirtTag = "placeholder"
|
||
|
)
|