blob: 47ad496889553de8236874ad524051f57b2cb77b [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"],
Tim Windelschmidt9f21f532024-05-07 15:14:20 +02006 importpath = "source.monogon.dev/osbase/pstore",
Lorenz Brunf8da2e72022-06-14 12:39:32 +02007 visibility = ["//visibility:public"],
8)
9
10go_test(
11 name = "pstore_test",
12 srcs = ["pstore_test.go"],
13 embed = [":pstore"],
14)