mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
a3f355c278
Signed-off-by: Laurentiu Niculae <niculae.laurentiu1@gmail.com>
20 lines
497 B
Go
20 lines
497 B
Go
package mocks
|
|
|
|
import (
|
|
godigest "github.com/opencontainers/go-digest"
|
|
|
|
storageTypes "zotregistry.io/zot/pkg/storage/types"
|
|
)
|
|
|
|
type MockedLint struct {
|
|
LintFn func(repo string, manifestDigest godigest.Digest, imageStore storageTypes.ImageStore) (bool, error)
|
|
}
|
|
|
|
func (lint MockedLint) Lint(repo string, manifestDigest godigest.Digest, imageStore storageTypes.ImageStore,
|
|
) (bool, error) {
|
|
if lint.LintFn != nil {
|
|
return lint.LintFn(repo, manifestDigest, imageStore)
|
|
}
|
|
|
|
return false, nil
|
|
}
|