blob: 2c3675977b35e40ce08b34310ce39c90bf13e060 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
package(licenses = ["notice"])
go_library(
name = "reviver",
srcs = ["reviver.go"],
importpath = "gvisor.dev/gvisor/tools/issue_reviver/reviver",
visibility = [
"//tools/issue_reviver:__subpackages__",
],
)
go_test(
name = "reviver_test",
size = "small",
srcs = ["reviver_test.go"],
embed = [":reviver"],
)
|