mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-29 10:08:39 -04:00

Wrapping apiObject does not work as intended as the version field is when fetching objects from the API. Thus we need to insert the target path of the signature directly.
12 lines
322 B
Text
12 lines
322 B
Text
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "fetcher",
|
|
srcs = ["fetcher.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/api/fetcher",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/constants",
|
|
"//internal/sigstore",
|
|
],
|
|
)
|