mirror of
https://github.com/project-zot/zot.git
synced 2026-06-16 04:17:55 +08:00
87fc941b3c
closes #536 Signed-off-by: Lisca Ana-Roberta <ana.kagome@yahoo.com>
10 lines
189 B
Go
10 lines
189 B
Go
package storage
|
|
|
|
import (
|
|
godigest "github.com/opencontainers/go-digest"
|
|
)
|
|
|
|
type Lint interface {
|
|
Lint(repo string, manifestDigest godigest.Digest, imageStore ImageStore) (bool, error)
|
|
}
|