fix examples/ compilation so that test/ also compiles

fix network-tester cauldron serve_hostnames
This commit is contained in:
Mike Danese
2016-12-07 18:16:07 -08:00
parent c87de85347
commit 82d9ed770c
25 changed files with 230 additions and 61 deletions

15
examples/explorer/BUILD Normal file
View File

@@ -0,0 +1,15 @@
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_binary",
)
go_binary(
name = "explorer",
srcs = ["explorer.go"],
tags = ["automanaged"],
deps = ["//vendor:github.com/davecgh/go-spew/spew"],
)