Add variables names to transfer interface

Signed-off-by: Derek McGowan <derek@mcg.dev>
This commit is contained in:
Derek McGowan 2022-10-17 15:49:46 -07:00
parent 8304a61b53
commit c387a52051
No known key found for this signature in database
GPG Key ID: F58C5D0A4405ACDB

View File

@ -27,7 +27,7 @@ import (
)
type Transferer interface {
Transfer(context.Context, interface{}, interface{}, ...Opt) error
Transfer(ctx context.Context, source interface{}, destination interface{}, opts ...Opt) error
}
type ImageResolver interface {