reg/vendor/github.com/grpc-ecosystem/grpc-gateway/utilities/BUILD.bazel
Jess Frazelle 67bc3ef6c3
add v3 api
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-06-11 12:48:47 -04:00

21 lines
443 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
package(default_visibility = ["//visibility:public"])
go_library(
name = "go_default_library",
srcs = [
"doc.go",
"pattern.go",
"trie.go",
],
importpath = "github.com/grpc-ecosystem/grpc-gateway/utilities",
)
go_test(
name = "go_default_xtest",
size = "small",
srcs = ["trie_test.go"],
deps = [":go_default_library"],
)