mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-15 17:51:20 +00:00
c12f94d6d4
Signed-off-by: Charles-Edouard Brétéché <charled.breteche@gmail.com> Co-authored-by: Vyankatesh Kudtarkar <vyankateshkd@gmail.com> Co-authored-by: shuting <shuting@nirmata.com>
9 lines
302 B
Go
9 lines
302 B
Go
package cosign
|
|
|
|
// Register the provider-specific plugins
|
|
import (
|
|
_ "github.com/sigstore/sigstore/pkg/signature/kms/aws"
|
|
_ "github.com/sigstore/sigstore/pkg/signature/kms/azure"
|
|
_ "github.com/sigstore/sigstore/pkg/signature/kms/gcp"
|
|
_ "github.com/sigstore/sigstore/pkg/signature/kms/hashivault"
|
|
)
|