load("@io_bazel_rules_go//go:def.bzl", "go_library")

go_library(
    name = "list",
    srcs = ["list.go"],
    importpath = "edge-infra.dev/pkg/edge/edgecli/commands/terminal/disk/list",
    visibility = ["//visibility:public"],
    deps = [
        "//pkg/edge/api/graph/model",
        "//pkg/edge/edgecli",
        "//pkg/edge/edgecli/constructors",
        "//pkg/edge/edgecli/flagutil",
        "//pkg/lib/cli/command",
        "//pkg/lib/cli/rags",
    ],
)