2023-04-21 04:47:07 -04:00
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "archive",
|
|
|
|
srcs = ["archive.go"],
|
|
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/osimage/archive",
|
|
|
|
visibility = ["//:__subpackages__"],
|
|
|
|
deps = [
|
2023-06-07 10:16:32 -04:00
|
|
|
"//internal/api/versionsapi",
|
2023-05-23 09:09:14 -04:00
|
|
|
"//internal/constants",
|
2023-06-02 05:20:01 -04:00
|
|
|
"//internal/staticupload",
|
2023-04-21 04:47:07 -04:00
|
|
|
"@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",
|
|
|
|
],
|
|
|
|
)
|