mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-10-31 20:41:22 +00:00
19 lines
519 B
Python
19 lines
519 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "opentracing-go",
|
|
srcs = [
|
|
"ext.go",
|
|
"globaltracer.go",
|
|
"gocontext.go",
|
|
"noop.go",
|
|
"propagation.go",
|
|
"span.go",
|
|
"tracer.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/opentracing/opentracing-go",
|
|
importpath = "github.com/opentracing/opentracing-go",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["//vendor/github.com/opentracing/opentracing-go/log"],
|
|
)
|