mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-03-04 12:49:34 -05:00

The TCP versions are extracted from the MAA token, that itself is taken from the verify command output. The configapi is adapted to directly work on the MAA claims JSON. Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
16 lines
400 B
Python
16 lines
400 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
|
|
|
go_library(
|
|
name = "configapi_lib",
|
|
srcs = ["main.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/hack/configapi",
|
|
visibility = ["//visibility:private"],
|
|
deps = ["//hack/configapi/cmd"],
|
|
)
|
|
|
|
go_binary(
|
|
name = "configapi",
|
|
embed = [":configapi_lib"],
|
|
visibility = ["//visibility:public"],
|
|
)
|