mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
22 lines
833 B
Python
22 lines
833 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "client",
|
|
srcs = ["client.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/api/versionsapi/client",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/api/versionsapi",
|
|
"//internal/constants",
|
|
"//internal/logger",
|
|
"@com_github_aws_aws_sdk_go_v2//aws",
|
|
"@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_cloudfront//:cloudfront",
|
|
"@com_github_aws_aws_sdk_go_v2_service_cloudfront//types",
|
|
"@com_github_aws_aws_sdk_go_v2_service_s3//:s3",
|
|
"@com_github_aws_aws_sdk_go_v2_service_s3//types",
|
|
"@org_golang_x_mod//semver",
|
|
],
|
|
)
|