blob: 2ecbdd879ae3ebafe1a637340c0dce9b7280167f [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "emailclient",
srcs = ["emailclient.go"],
importpath = "go.skia.org/infra/email/go/emailclient",
visibility = ["//visibility:public"],
deps = [
"//go/email",
"//go/httputils",
"//go/skerr",
"//go/sklog",
],
)
go_test(
name = "emailclient_test",
srcs = ["emailclient_test.go"],
embed = [":emailclient"],
deps = [
"//go/httputils",
"@com_github_stretchr_testify//require",
],
)