blob: ce971ee9da97e9fa95b341f9139b56e8240a90bc (
plain)
1
2
3
4
5
6
7
8
9
|
load("@io_bazel_rules_go//go:def.bzl", "go_binary")
package(licenses = ["notice"])
go_binary(
name = "proctor-go",
srcs = ["proctor-go.go"],
deps = ["//test/runtimes/common"],
)
|