1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "server",
srcs = [
"factory.go",
"module.go",
"server.go",
],
importpath = "gitlab.com/gitlab-org/cluster-integration/gitlab-agent/v16/internal/module/agent_tracker/server",
visibility = ["//:__subpackages__"],
deps = [
"//internal/module/agent_tracker",
"//internal/module/agent_tracker/rpc",
"//internal/module/modserver",
"//internal/module/modshared",
"//internal/tool/metric",
"@com_github_prometheus_client_golang//prometheus",
"@org_golang_google_grpc//codes",
"@org_golang_google_grpc//status",
],
)
|