mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
87fc941b3c
closes #536 Signed-off-by: Lisca Ana-Roberta <ana.kagome@yahoo.com>
18 lines
465 B
Go
18 lines
465 B
Go
package mocks
|
|
|
|
import (
|
|
godigest "github.com/opencontainers/go-digest"
|
|
"zotregistry.io/zot/pkg/storage"
|
|
)
|
|
|
|
type MockedLint struct {
|
|
LintFn func(repo string, manifestDigest godigest.Digest, imageStore storage.ImageStore) (bool, error)
|
|
}
|
|
|
|
func (lint MockedLint) Lint(repo string, manifestDigest godigest.Digest, imageStore storage.ImageStore) (bool, error) {
|
|
if lint.LintFn != nil {
|
|
return lint.LintFn(repo, manifestDigest, imageStore)
|
|
}
|
|
|
|
return false, nil
|
|
}
|