blob: 35b0111ca3e22be284077ef3cb49d782b92116c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
load("//tools:defs.bzl", "go_binary")
package(licenses = ["notice"])
go_binary(
name = "issue_reviver",
srcs = ["main.go"],
nogo = False,
deps = [
"//tools/issue_reviver/github",
"//tools/issue_reviver/reviver",
],
)
|