mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-13 01:44:22 -05:00
14 lines
350 B
Python
14 lines
350 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "testdata",
|
||
|
srcs = ["testdata.go"],
|
||
|
embedsrcs = [
|
||
|
"certchain.pem",
|
||
|
"vlek.pem",
|
||
|
"report.txt",
|
||
|
],
|
||
|
importpath = "github.com/edgelesssys/constellation/v2/internal/attestation/aws/snp/testdata",
|
||
|
visibility = ["//:__subpackages__"],
|
||
|
)
|