mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-17 20:38:54 -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>
19 lines
581 B
Text
19 lines
581 B
Text
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
|
|
|
go_library(
|
|
name = "azure-snp-report-verify_lib",
|
|
srcs = ["verify.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/hack/azure-snp-report-verify",
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"//internal/api/attestationconfig",
|
|
"@in_gopkg_square_go_jose_v2//:go-jose_v2",
|
|
"@in_gopkg_square_go_jose_v2//jwt",
|
|
],
|
|
)
|
|
|
|
go_binary(
|
|
name = "azure-snp-report-verify",
|
|
embed = [":azure-snp-report-verify_lib"],
|
|
visibility = ["//visibility:public"],
|
|
)
|