mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
14 lines
441 B
Python
14 lines
441 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "go",
|
||
|
srcs = ["metrics.pb.go"],
|
||
|
importmap = "peridot.resf.org/vendor/github.com/prometheus/client_model/go",
|
||
|
importpath = "github.com/prometheus/client_model/go",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"@com_github_golang_protobuf//proto:go_default_library",
|
||
|
"@io_bazel_rules_go//proto/wkt:timestamp_go_proto",
|
||
|
],
|
||
|
)
|