layer_store_windows.go 267 B

1234567891011
  1. package layer
  2. import (
  3. "io"
  4. "github.com/docker/distribution"
  5. )
  6. func (ls *layerStore) RegisterWithDescriptor(ts io.Reader, parent ChainID, os OS, descriptor distribution.Descriptor) (Layer, error) {
  7. return ls.registerWithDescriptor(ts, parent, os, descriptor)
  8. }