blob: 37fd6a0f270c7477273d17bcd3a615c2fe2b5d05 (
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-python",
srcs = ["proctor-python.go"],
deps = ["//test/runtimes/common"],
)
|