blob: 5c34b98724718c2fc99d3f6042fa358dce880b3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
load("//tools:defs.bzl", "go_library", "go_test")
package(licenses = ["notice"])
go_library(
name = "cleanup",
srcs = ["cleanup.go"],
visibility = ["//:sandbox"],
deps = [
],
)
go_test(
name = "cleanup_test",
srcs = ["cleanup_test.go"],
library = ":cleanup",
)
|