mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-24 14:11:25 +00:00
15 lines
410 B
Python
15 lines
410 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "baggage",
|
||
|
srcs = [
|
||
|
"baggage.go",
|
||
|
"context.go",
|
||
|
"doc.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/go.opentelemetry.io/otel/baggage",
|
||
|
importpath = "go.opentelemetry.io/otel/baggage",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = ["//vendor/go.opentelemetry.io/otel/internal/baggage"],
|
||
|
)
|