load("/tools/build_rules/go/def", "go_library", "go_test")

go_library(
	name = "go_default_library",
	srcs = glob(["*.go"], ["*_test.go"]),
	visibility = ["//visibility:public"],
)

go_test(
	name = "test",
	size = "small",
	srcs = glob(["*.go"]),
)
