mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-12 17:34:28 -05:00
13 lines
323 B
Python
13 lines
323 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "metadata",
|
||
|
srcs = ["metadata.go"],
|
||
|
importpath = "github.com/edgelesssys/constellation/v2/internal/cloud/metadata",
|
||
|
visibility = ["//:__subpackages__"],
|
||
|
deps = [
|
||
|
"//internal/constants",
|
||
|
"//internal/role",
|
||
|
],
|
||
|
)
|