mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
17 lines
502 B
Python
17 lines
502 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "metrics",
|
||
|
srcs = [
|
||
|
"capturing_handler.go",
|
||
|
"constants.go",
|
||
|
"grpc.go",
|
||
|
"handler.go",
|
||
|
"tags.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/go.temporal.io/sdk/internal/common/metrics",
|
||
|
importpath = "go.temporal.io/sdk/internal/common/metrics",
|
||
|
visibility = ["//vendor/go.temporal.io/sdk:__subpackages__"],
|
||
|
deps = ["@org_golang_google_grpc//:go_default_library"],
|
||
|
)
|