Files
2023-03-02 10:50:04 -08:00

30 lines
484 B
Python

load("//tools:defs.bzl", "go_library", "go_test")
package(
default_applicable_licenses = ["//:license"],
default_visibility = ["//visibility:public"],
)
licenses(["notice"])
go_library(
name = "fspath",
srcs = [
"builder.go",
"fspath.go",
],
deps = [
"//pkg/gohacks",
],
)
go_test(
name = "fspath_test",
size = "small",
srcs = [
"builder_test.go",
"fspath_test.go",
],
library = ":fspath",
)