blob: 1e345eb68b4aed45e84b330f75ae356aa24b639a [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"],
Tim Windelschmidt9f21f532024-05-07 15:14:20 +02006 importpath = "source.monogon.dev/osbase/msguid",
Lorenz Brun62a1edd2023-06-20 16:01:44 +02007 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)