mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
ce4924f841
Signed-off-by: Andrei Aaron <aaaron@luxoft.com>
13 lines
315 B
Go
13 lines
315 B
Go
//go:build !sync
|
|
// +build !sync
|
|
|
|
package server
|
|
|
|
import (
|
|
"zotregistry.dev/zot/pkg/api/config"
|
|
syncconf "zotregistry.dev/zot/pkg/extensions/config/sync"
|
|
zlog "zotregistry.dev/zot/pkg/log"
|
|
)
|
|
|
|
func validateRetentionSyncOverlaps(config *config.Config, content syncconf.Content, urls []string, log zlog.Logger) {
|
|
}
|