mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 14:31:22 +00:00
15 lines
456 B
Python
15 lines
456 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "pbutil",
|
||
|
srcs = [
|
||
|
"decode.go",
|
||
|
"doc.go",
|
||
|
"encode.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil",
|
||
|
importpath = "github.com/matttproud/golang_protobuf_extensions/pbutil",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = ["@com_github_golang_protobuf//proto:go_default_library"],
|
||
|
)
|