mirror of
https://github.com/project-zot/zot.git
synced 2025-01-20 22:52:51 -05:00
a3f355c278
Signed-off-by: Laurentiu Niculae <niculae.laurentiu1@gmail.com>
11 lines
256 B
Go
11 lines
256 B
Go
package storage
|
|
|
|
import (
|
|
godigest "github.com/opencontainers/go-digest"
|
|
|
|
storageTypes "zotregistry.io/zot/pkg/storage/types"
|
|
)
|
|
|
|
type Lint interface {
|
|
Lint(repo string, manifestDigest godigest.Digest, imageStore storageTypes.ImageStore) (bool, error)
|
|
}
|