mirror of
https://github.com/siderolabs/image-factory.git
synced 2025-12-06 18:11:32 +01:00
Initial version of the image service. Implements a basic configuration service, and HTTP frontend for assets. Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
15 lines
369 B
Go
15 lines
369 B
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
package artifacts
|
|
|
|
// Arch is the artifacts architecture.
|
|
type Arch string
|
|
|
|
// Supported architectures.
|
|
const (
|
|
ArchAmd64 Arch = "amd64"
|
|
ArchArm64 Arch = "arm64"
|
|
)
|