mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04: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>
18 lines
608 B
Python
18 lines
608 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "imageinfo",
|
|
srcs = ["imageinfo.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/osimage/imageinfo",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/api/versions",
|
|
"//internal/constants",
|
|
"//internal/logger",
|
|
"@com_github_aws_aws_sdk_go_v2_config//:config",
|
|
"@com_github_aws_aws_sdk_go_v2_feature_s3_manager//:manager",
|
|
"@com_github_aws_aws_sdk_go_v2_service_s3//:s3",
|
|
"@com_github_aws_aws_sdk_go_v2_service_s3//types",
|
|
],
|
|
)
|