mirror of
https://github.com/project-zot/zot.git
synced 2024-12-30 22:34:13 -05:00
ce4924f841
Signed-off-by: Andrei Aaron <aaaron@luxoft.com>
11 lines
257 B
Go
11 lines
257 B
Go
package storage
|
|
|
|
import (
|
|
godigest "github.com/opencontainers/go-digest"
|
|
|
|
storageTypes "zotregistry.dev/zot/pkg/storage/types"
|
|
)
|
|
|
|
type Lint interface {
|
|
Lint(repo string, manifestDigest godigest.Digest, imageStore storageTypes.ImageStore) (bool, error)
|
|
}
|