mirror of
https://github.com/project-zot/zot.git
synced 2024-12-23 22:27:35 -05:00
15 lines
289 B
Go
15 lines
289 B
Go
|
//go:build !sync
|
||
|
// +build !sync
|
||
|
|
||
|
package sync
|
||
|
|
||
|
type BaseOnDemand struct{}
|
||
|
|
||
|
func (onDemand *BaseOnDemand) SyncImage(repo, reference string) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (onDemand *BaseOnDemand) SyncReference(repo string, subjectDigestStr string, referenceType string) error {
|
||
|
return nil
|
||
|
}
|