Andrey Smirnov 803ffa15a5
feat: initial version
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>
2023-09-01 00:21:19 +04:00

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"
)