mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
4284f892ce
* rename to attestationconfigapi + put client and fetcher inside pkg * rename api/version to versionsapi and put fetcher + client inside pkg * rename AttestationConfigAPIFetcher to Fetcher
20 lines
584 B
Python
20 lines
584 B
Python
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/attestationconfigapi",
|
|
"@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"],
|
|
)
|