mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-26 16:09:45 -05:00
99b12e4035
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
16 lines
405 B
Python
16 lines
405 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "oid",
|
|
srcs = ["oid.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/oid",
|
|
visibility = ["//:__subpackages__"],
|
|
)
|
|
|
|
go_library(
|
|
name = "variant",
|
|
srcs = ["variant.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/variant",
|
|
visibility = ["//:__subpackages__"],
|
|
)
|