summaryrefslogtreecommitdiff
path: root/layer/layer_store_windows.go
blob: eca1f6a83b9b876e29622c52d4419cf70220a18b (plain)
1
2
3
4
5
6
7
8
9
10
11
package layer // import "github.com/docker/docker/layer"

import (
	"io"

	"github.com/docker/distribution"
)

func (ls *layerStore) RegisterWithDescriptor(ts io.Reader, parent ChainID, descriptor distribution.Descriptor) (Layer, error) {
	return ls.registerWithDescriptor(ts, parent, descriptor)
}