...

Text file src/edge-infra.dev/pkg/lib/gcp/monitoring/alerting/BUILD.bazel

Documentation: edge-infra.dev/pkg/lib/gcp/monitoring/alerting

     1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
     2
     3go_library(
     4    name = "alerting",
     5    srcs = ["incidents.go"],
     6    importpath = "edge-infra.dev/pkg/lib/gcp/monitoring/alerting",
     7    visibility = ["//visibility:public"],
     8)
     9
    10go_test(
    11    name = "alerting_test",
    12    srcs = ["incident_test.go"],
    13    embed = [":alerting"],
    14    deps = ["@com_github_stretchr_testify//assert"],
    15)

View as plain text