mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
9074f8483b
feat(metaDB): add more image statistics info Signed-off-by: Petu Eusebiu <peusebiu@cisco.com>
13 lines
312 B
Go
13 lines
312 B
Go
//go:build !sync
|
|
// +build !sync
|
|
|
|
package server
|
|
|
|
import (
|
|
"zotregistry.io/zot/pkg/api/config"
|
|
syncconf "zotregistry.io/zot/pkg/extensions/config/sync"
|
|
zlog "zotregistry.io/zot/pkg/log"
|
|
)
|
|
|
|
func validateRetentionSyncOverlaps(config *config.Config, content syncconf.Content, urls []string, log zlog.Logger) {
|
|
}
|