blob: 82e6a0e17edb09e2ca2d1a211ba731e1b6662b79 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "reminder",
srcs = ["reminder.go"],
importpath = "go.skia.org/infra/am/go/reminder",
visibility = ["//visibility:public"],
deps = [
"//am/go/incident",
"//am/go/silence",
"//email/go/emailclient",
"//go/ds",
"//go/email",
"//go/httputils",
"//go/rotations",
"//go/sklog",
"@com_google_cloud_go_datastore//:datastore",
],
)
go_test(
name = "reminder_test",
srcs = ["reminder_test.go"],
embed = [":reminder"],
deps = [
"//am/go/incident",
"//am/go/silence",
"//go/paramtools",
"//go/testutils/unittest",
"@com_github_stretchr_testify//assert",
],
)