fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

1load("@io_bazel_rules_go//go:def.bzl", "go_library") 2 3go_library( 4 name = "trace", 5 srcs = [ 6 "opentracing.go", 7 "trace.go", 8 ], 9 importpath = "github.com/sourcegraph/zoekt/trace", 10 visibility = ["//visibility:public"], 11 deps = [ 12 "@com_github_opentracing_opentracing_go//:opentracing-go", 13 "@com_github_opentracing_opentracing_go//ext", 14 "@com_github_opentracing_opentracing_go//log", 15 "@org_golang_x_net//trace", 16 ], 17)