blob: 9be5fdbd0b51e7270faa27f235283e4695067fe0 [file] [log] [blame]
Lorenz Brun62a1edd2023-06-20 16:01:44 +02001load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
3go_library(
4 name = "msguid",
5 srcs = ["msguid.go"],
6 importpath = "source.monogon.dev/metropolis/pkg/msguid",
7 visibility = ["//visibility:public"],
8 deps = ["@com_github_google_uuid//:uuid"],
9)
10
11go_test(
12 name = "msguid_test",
13 srcs = ["msguid_test.go"],
14 embed = [":msguid"],
15 deps = [
16 "@com_github_google_go_cmp//cmp",
17 "@com_github_google_uuid//:uuid",
18 ],
19)