...
1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
3go_library(
4 name = "eagateway",
5 srcs = [
6 "config.go",
7 "types.go",
8 ],
9 importpath = "edge-infra.dev/pkg/sds/emergencyaccess/eagateway",
10 visibility = ["//visibility:public"],
11 deps = [
12 "//pkg/sds/emergencyaccess/msgdata",
13 "//pkg/sds/emergencyaccess/remotecli",
14 ],
15)
16
17go_test(
18 name = "eagateway_test",
19 srcs = ["config_test.go"],
20 embed = [":eagateway"],
21 deps = [
22 "@com_github_peterbourgon_ff_v3//:ff",
23 "@com_github_stretchr_testify//assert",
24 ],
25)
View as plain text