load("@io_bazel_rules_go//go:def.bzl", "go_library") go_library( name = "metrics", srcs = ["server.go"], importpath = "edge-infra.dev/pkg/edge/ctlfish/metrics", visibility = ["//visibility:public"], deps = [ "@com_github_gin_gonic_gin//:gin", "@com_github_prometheus_client_golang//prometheus", "@com_github_prometheus_client_golang//prometheus/promauto", "@com_github_prometheus_client_golang//prometheus/promhttp", ], )