Files

24 lines
406 B
Python
Raw Permalink Normal View History

load("//tools:defs.bzl", "go_library", "go_test")
package(
default_applicable_licenses = ["//:license"],
licenses = ["notice"],
)
go_library(
name = "wire",
srcs = ["wire.go"],
marshal = False,
stateify = False,
visibility = ["//:sandbox"],
2024-04-15 19:37:28 -07:00
deps = [
"//pkg/gohacks",
],
)
go_test(
name = "wire_test",
srcs = ["wire_test.go"],
library = ":wire",
)