2023-03-09 09:23:42 -05:00
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "client",
|
|
|
|
srcs = ["client.go"],
|
2023-06-02 03:19:23 -04:00
|
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/api/client",
|
2023-03-09 09:23:42 -05:00
|
|
|
visibility = ["//:__subpackages__"],
|
|
|
|
deps = [
|
|
|
|
"//internal/logger",
|
2023-06-02 05:20:01 -04:00
|
|
|
"//internal/staticupload",
|
2023-03-09 09:23:42 -05: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",
|
2023-06-02 03:19:23 -04:00
|
|
|
"@org_uber_go_zap//:zap",
|
2023-03-09 09:23:42 -05:00
|
|
|
],
|
|
|
|
)
|