...
1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
3go_library(
4 name = "triage_parent",
5 srcs = [
6 "handler.go",
7 "issue.go",
8 ],
9 importpath = "edge-infra.dev/pkg/f8n/devinfra/jack/plugin/triage_parent",
10 visibility = ["//visibility:public"],
11 deps = [
12 "//pkg/f8n/devinfra/jack/constants",
13 "//pkg/f8n/devinfra/jack/guest_services",
14 "//pkg/f8n/devinfra/jack/plugin",
15 "//pkg/lib/logging",
16 "@com_github_google_go_github_v47//github",
17 ],
18)
19
20go_test(
21 name = "triage_parent_test",
22 srcs = ["handler_test.go"],
23 embed = [":triage_parent"],
24 deps = [
25 "//pkg/f8n/devinfra/jack/constants",
26 "//pkg/f8n/devinfra/jack/plugin",
27 "//pkg/lib/logging",
28 "@com_github_google_go_github_v47//github",
29 ],
30)
View as plain text