1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "concatkdf",
srcs = ["concatkdf.go"],
importpath = "github.com/lestrrat-go/jwx/v2/jwe/internal/concatkdf",
visibility = ["//:__subpackages__"],
)
go_test(
name = "concatkdf_test",
srcs = ["concatkdf_test.go"],
embed = [":concatkdf"],
deps = [
"//jwa",
"@com_github_stretchr_testify//assert",
],
)
alias(
name = "go_default_library",
actual = ":concatkdf",
visibility = ["//jwe:__subpackages__"],
)
|