load("@io_bazel_rules_go//go:def.bzl", "go_library") | |
go_library( | |
name = "core", | |
srcs = [ | |
"core.go", | |
"install.go", | |
], | |
importpath = "source.monogon.dev/metropolis/cli/metroctl/core", | |
visibility = ["//visibility:public"], | |
deps = [ | |
"//metropolis/proto/api", | |
"@com_github_diskfs_go_diskfs//:go-diskfs", | |
"@com_github_diskfs_go_diskfs//disk", | |
"@com_github_diskfs_go_diskfs//filesystem", | |
"@com_github_diskfs_go_diskfs//partition/gpt", | |
"@org_golang_google_protobuf//proto", | |
], | |
) |