1load("@io_bazel_rules_go//go:def.bzl", "go_library") 2 3go_library( 4 name = "terminaladdress", 5 srcs = ["terminaladdress.go"], 6 importpath = "edge-infra.dev/pkg/edge/edgecli/commands/terminal/terminaladdress", 7 visibility = ["//visibility:public"], 8 deps = [ 9 "//pkg/edge/edgecli", 10 "//pkg/edge/edgecli/commands/terminal/terminaladdress/modify", 11 "//pkg/lib/cli/command", 12 ], 13)