mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 19:51:50 +00:00
20 lines
616 B
Python
20 lines
616 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "command",
|
|
srcs = ["generate.go"],
|
|
importpath = "github.com/sourcegraph/sourcegraph/monitoring/command",
|
|
tags = [TAG_INFRA_DEVINFRA],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//lib/cliutil/completions",
|
|
"//lib/errors",
|
|
"//monitoring/definitions",
|
|
"//monitoring/monitoring",
|
|
"@com_github_hashicorp_hcl//hcl/strconv",
|
|
"@com_github_prometheus_prometheus//model/labels",
|
|
"@com_github_sourcegraph_log//:log",
|
|
"@com_github_urfave_cli_v2//:cli",
|
|
],
|
|
)
|