mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
17 lines
474 B
Python
17 lines
474 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "ext",
|
|
srcs = [
|
|
"field.go",
|
|
"tags.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/opentracing/opentracing-go/ext",
|
|
importpath = "github.com/opentracing/opentracing-go/ext",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/opentracing/opentracing-go",
|
|
"//vendor/github.com/opentracing/opentracing-go/log",
|
|
],
|
|
)
|