feat: export embedded root names

This commit is contained in:
mrjoelkamp
2024-07-11 09:49:28 -05:00
parent d65be7be7c
commit da310234a4

View File

@@ -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)
}