blob: ac840950a305352e627521e89e5c64782c74d15c [file] [log] [blame]
Lorenz Brunf8da2e72022-06-14 12:39:32 +02001load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
3go_library(
4 name = "pstore",
5 srcs = ["pstore.go"],
6 importpath = "source.monogon.dev/metropolis/pkg/pstore",
7 visibility = ["//visibility:public"],
8)
9
10go_test(
11 name = "pstore_test",
12 srcs = ["pstore_test.go"],
13 embed = [":pstore"],
14)