moby--moby/graph/load_unsupported.go

13 lines
204 B
Go

// +build !linux,!windows
package graph
import (
"fmt"
"io"
)
func (s *TagStore) Load(inTar io.ReadCloser, outStream io.Writer) error {
return fmt.Errorf("Load is not supported on this platform")
}