mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
14 lines
426 B
Python
14 lines
426 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "metautils",
|
||
|
srcs = [
|
||
|
"doc.go",
|
||
|
"nicemd.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/github.com/grpc-ecosystem/go-grpc-middleware/util/metautils",
|
||
|
importpath = "github.com/grpc-ecosystem/go-grpc-middleware/util/metautils",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = ["@org_golang_google_grpc//metadata"],
|
||
|
)
|