mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
10 lines
177 B
Go
10 lines
177 B
Go
![]() |
package layer
|
||
|
|
||
|
import "github.com/docker/distribution"
|
||
|
|
||
|
var _ ForeignSourcer = &roLayer{}
|
||
|
|
||
|
func (rl *roLayer) ForeignSource() *distribution.Descriptor {
|
||
|
return rl.foreignSrc
|
||
|
}
|