mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
17 lines
539 B
Python
17 lines
539 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "libvirt",
|
||
|
srcs = ["libvirt.go"],
|
||
|
importpath = "github.com/edgelesssys/constellation/v2/cli/internal/libvirt",
|
||
|
visibility = ["//cli:__subpackages__"],
|
||
|
deps = [
|
||
|
"//internal/file",
|
||
|
"@com_github_docker_docker//api/types",
|
||
|
"@com_github_docker_docker//api/types/container",
|
||
|
"@com_github_docker_docker//api/types/filters",
|
||
|
"@com_github_docker_docker//client",
|
||
|
"@com_github_spf13_afero//:afero",
|
||
|
],
|
||
|
)
|