blob: 311b93dcbc7b80d6ef0fcd09b4ff0ed7808a0ecb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
load("//tools:defs.bzl", "go_library")
package(licenses = ["notice"])
go_library(
name = "wire",
srcs = ["wire.go"],
marshal = False,
stateify = False,
visibility = ["//:sandbox"],
deps = ["//pkg/gohacks"],
)
|