1
0
mirror of https://github.com/containers/image.git synced 2025-04-18 19:44:05 +03:00
image/sif/src_test.go
Miloslav Trmač 592371c8be Implement private.ImageSource in non-forwarding transports
This sets up the precedent that all transports should primarily implement
the private interface; that will allow us to make future changes to the
private interface easier, because we can just change the public interface
wrappers in a single place instead of modifying transports - especially
as more stubs are added soonish.

Should not change behavior.

Signed-off-by: Miloslav Trmač <mitr@redhat.com>
2022-07-05 17:02:23 +02:00

6 lines
122 B
Go

package sif
import "github.com/containers/image/v5/internal/private"
var _ private.ImageSource = (*sifImageSource)(nil)