diff --git a/pkg/tuf/tuf.go b/pkg/tuf/tuf.go index f3af13e..c4fe00a 100644 --- a/pkg/tuf/tuf.go +++ b/pkg/tuf/tuf.go @@ -27,6 +27,13 @@ const ( OciSource TufSource = "oci" ) +var ( + DockerTufRootProd = embed.RootProd + DockerTufRootStaging = embed.RootStaging + DockerTufRootDev = embed.RootDev + DockerTufRootDefault = embed.RootDefault +) + type TUFClient interface { DownloadTarget(target, filePath string) (actualFilePath string, data []byte, err error) }