mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
05bd04350b
This is used to support downloading Windows base images from Microsoft servers. Signed-off-by: John Starks <jostarks@microsoft.com>
9 lines
177 B
Go
9 lines
177 B
Go
package layer
|
|
|
|
import "github.com/docker/distribution"
|
|
|
|
var _ ForeignSourcer = &roLayer{}
|
|
|
|
func (rl *roLayer) ForeignSource() *distribution.Descriptor {
|
|
return rl.foreignSrc
|
|
}
|