blob: deec69486157a7db3c665339a325f915b377e3fd [file] [log] [blame] [edit]
load("@rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "pushgateway",
srcs = ["pushgateway.go"],
importpath = "go.skia.org/infra/promk/go/pushgateway",
visibility = ["//visibility:public"],
deps = [
"//go/httputils",
"//go/skerr",
],
)
go_test(
name = "pushgateway_test",
srcs = ["pushgateway_test.go"],
embed = [":pushgateway"],
deps = [
"//go/httputils",
"@com_github_stretchr_testify//require",
],
)