mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-24 22:21:25 +00:00
23 lines
600 B
Python
23 lines
600 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "metric",
|
||
|
srcs = [
|
||
|
"asyncfloat64.go",
|
||
|
"asyncint64.go",
|
||
|
"config.go",
|
||
|
"doc.go",
|
||
|
"instrument.go",
|
||
|
"meter.go",
|
||
|
"syncfloat64.go",
|
||
|
"syncint64.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/go.opentelemetry.io/otel/metric",
|
||
|
importpath = "go.opentelemetry.io/otel/metric",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//vendor/go.opentelemetry.io/otel/attribute",
|
||
|
"//vendor/go.opentelemetry.io/otel/metric/embedded",
|
||
|
],
|
||
|
)
|