mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-19 05:18:48 -04:00

* api: rename AttestationVersionRepo to Client * api: move client into separate subpkg for clearer import paths. * api: rename configapi -> attestationconfig * api: rename versionsapi -> versions * api: rename sut to client * api: split versionsapi client and make it public * api: split versionapi fetcher and make it public * config: move attestationversion type to config * api: fix attestationconfig client test Co-authored-by: Adrian Stobbe <stobbe.adrian@gmail.com>
13 lines
373 B
Text
13 lines
373 B
Text
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "osimage",
|
|
srcs = ["osimage.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/osimage",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/api/versions",
|
|
"//internal/cloud/cloudprovider",
|
|
"//internal/osimage/secureboot",
|
|
],
|
|
)
|