blob: 9caf5af7335d595cb049296aea2f6ca9929d165a [file] [log] [blame] [edit]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "utils",
srcs = ["anomalygrouputils.go"],
importpath = "go.skia.org/infra/perf/go/anomalygroup/utils",
visibility = ["//visibility:public"],
deps = [
"//go/skerr",
"//go/sklog",
"//perf/go/alerts",
"//perf/go/anomalygroup/proto/v1",
"//perf/go/backend/client",
"//perf/go/config",
"//perf/go/workflows",
"//temporal/go/client",
"@io_temporal_go_sdk//client",
"@io_temporal_go_sdk//temporal",
"@org_golang_google_grpc//codes",
"@org_golang_google_grpc//status",
],
)