layer/layer_store_windows.go
2c60430a
 package layer
 
 import (
 	"io"
 
 	"github.com/docker/distribution"
 )
 
afd305c4
 func (ls *layerStore) RegisterWithDescriptor(ts io.Reader, parent ChainID, descriptor distribution.Descriptor) (Layer, error) {
 	return ls.registerWithDescriptor(ts, parent, descriptor)
2c60430a
 }