mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
1d6e443119
Addresses #14756 Signed-off-by: Srini Brahmaroutu <srbrahma@us.ibm.com>
14 lines
370 B
Go
14 lines
370 B
Go
// +build !linux,!windows
|
|
|
|
package graph
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
// Load method is implemented here for non-linux and non-windows platforms and
|
|
// may return an error indicating that image load is not supported on other platforms.
|
|
func (s *TagStore) Load(inTar io.ReadCloser, outStream io.Writer) error {
|
|
return fmt.Errorf("Load is not supported on this platform")
|
|
}
|