mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
10 lines
226 B
Go
10 lines
226 B
Go
package layer // import "github.com/docker/docker/layer"
|
|
|
|
import "github.com/docker/distribution"
|
|
|
|
var _ distribution.Describable = &roLayer{}
|
|
|
|
func (rl *roLayer) Descriptor() distribution.Descriptor {
|
|
return rl.descriptor
|
|
}
|