| Jan Schär | e4c4854 | 2025-03-20 08:39:10 +0000 | [diff] [blame] | 1 | load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") |
| 2 | |||||
| 3 | go_library( | ||||
| 4 | name = "structfs", | ||||
| 5 | srcs = [ | ||||
| 6 | "blob.go", | ||||
| 7 | "structfs.go", | ||||
| 8 | ], | ||||
| 9 | importpath = "source.monogon.dev/osbase/structfs", | ||||
| 10 | visibility = ["//visibility:public"], | ||||
| 11 | ) | ||||
| 12 | |||||
| 13 | go_test( | ||||
| 14 | name = "structfs_test", | ||||
| 15 | srcs = ["structfs_test.go"], | ||||
| 16 | deps = [":structfs"], | ||||
| 17 | ) | ||||