mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-29 01:16:12 -05:00
30f2b332b3
* api: rename AttestationVersionRepo to Client * api: move client into separate subpkg for clearer import paths. * api: rename configapi -> attestationconfig * api: rename versionsapi -> versions * api: rename sut to client * api: split versionsapi client and make it public * api: split versionapi fetcher and make it public * config: move attestationversion type to config * api: fix attestationconfig client test Co-authored-by: Adrian Stobbe <stobbe.adrian@gmail.com>
28 lines
872 B
Python
28 lines
872 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "cmd",
|
|
srcs = [
|
|
"deploy.go",
|
|
"root.go",
|
|
],
|
|
importpath = "github.com/edgelesssys/constellation/v2/debugd/internal/cdbg/cmd",
|
|
visibility = ["//debugd:__subpackages__"],
|
|
deps = [
|
|
"//debugd/internal/debugd",
|
|
"//debugd/internal/debugd/logcollector",
|
|
"//debugd/internal/filetransfer",
|
|
"//debugd/internal/filetransfer/streamer",
|
|
"//debugd/service",
|
|
"//internal/api/attestationconfig/fetcher",
|
|
"//internal/config",
|
|
"//internal/constants",
|
|
"//internal/file",
|
|
"//internal/logger",
|
|
"@com_github_spf13_afero//:afero",
|
|
"@com_github_spf13_cobra//:cobra",
|
|
"@org_golang_google_grpc//:go_default_library",
|
|
"@org_golang_google_grpc//credentials/insecure",
|
|
],
|
|
)
|