mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
18 lines
571 B
Python
18 lines
571 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/client",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/logger",
|
|
"//internal/sigstore",
|
|
"//internal/staticupload",
|
|
"@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",
|
|
"@org_uber_go_zap//:zap",
|
|
],
|
|
)
|