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>
17 lines
400 B
Go
17 lines
400 B
Go
//go:build !lint
|
|
// +build !lint
|
|
|
|
package extensions
|
|
|
|
import (
|
|
"zotregistry.io/zot/pkg/api/config"
|
|
"zotregistry.io/zot/pkg/extensions/lint"
|
|
"zotregistry.io/zot/pkg/log"
|
|
)
|
|
|
|
func GetLinter(config *config.Config, log log.Logger) *lint.Linter {
|
|
log.Warn().Msg("lint extension is disabled because given zot binary doesn't" +
|
|
"include this feature please build a binary that does so")
|
|
|
|
return nil
|
|
}
|