mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
14 lines
367 B
Python
14 lines
367 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
# keep
|
||
|
go_library(
|
||
|
name = "simulator",
|
||
|
srcs = [
|
||
|
"simulator.go",
|
||
|
"simulator_disabled.go",
|
||
|
],
|
||
|
importpath = "github.com/edgelesssys/constellation/v2/internal/attestation/simulator",
|
||
|
visibility = ["//:__subpackages__"],
|
||
|
deps = ["@com_github_google_go_tpm_tools//simulator"],
|
||
|
)
|