blob: 1e345eb68b4aed45e84b330f75ae356aa24b639a [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "msguid",
srcs = ["msguid.go"],
importpath = "source.monogon.dev/osbase/msguid",
visibility = ["//visibility:public"],
deps = ["@com_github_google_uuid//:uuid"],
)
go_test(
name = "msguid_test",
srcs = ["msguid_test.go"],
embed = [":msguid"],
deps = [
"@com_github_google_go_cmp//cmp",
"@com_github_google_uuid//:uuid",
],
)