github.com/slene/docker@v1.8.0-rc1/graph/load_unsupported.go (about)

     1  // +build !linux,!windows
     2  
     3  package graph
     4  
     5  import (
     6  	"fmt"
     7  	"io"
     8  )
     9  
    10  func (s *TagStore) Load(inTar io.ReadCloser, outStream io.Writer) error {
    11  	return fmt.Errorf("Load is not supported on this platform")
    12  }