mirror of
https://github.com/project-zot/zot.git
synced 2024-12-23 22:27:35 -05:00
1300fdfa88
Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
18 lines
331 B
Go
18 lines
331 B
Go
//go:build !lint
|
|
// +build !lint
|
|
|
|
package lint
|
|
|
|
import (
|
|
godigest "github.com/opencontainers/go-digest"
|
|
|
|
storageTypes "zotregistry.io/zot/pkg/storage/types"
|
|
)
|
|
|
|
type Linter struct{}
|
|
|
|
func (linter *Linter) Lint(repo string, manifestDigest godigest.Digest,
|
|
imageStore storageTypes.ImageStore,
|
|
) (bool, error) {
|
|
return true, nil
|
|
}
|