...
1load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
4 name = "terminal",
5 srcs = ["terminal.go"],
6 importpath = "edge-infra.dev/pkg/edge/edgecli/commands/terminal",
7 visibility = ["//visibility:public"],
8 deps = [
9 "//pkg/edge/edgecli",
10 "//pkg/edge/edgecli/commands/terminal/bulkregister",
11 "//pkg/edge/edgecli/commands/terminal/disk",
12 "//pkg/edge/edgecli/commands/terminal/modify",
13 "//pkg/edge/edgecli/commands/terminal/register",
14 "//pkg/edge/edgecli/commands/terminal/remove",
15 "//pkg/edge/edgecli/commands/terminal/terminaladdress",
16 "//pkg/edge/edgecli/commands/terminal/terminalinterface",
17 "//pkg/lib/cli/command",
18 ],
19)
View as plain text