mirror of
https://github.com/clearlinux/docker.git
synced 2026-08-28 13:25:42 +00:00
1d6e443119
Addresses #14756 Signed-off-by: Srini Brahmaroutu <srbrahma@us.ibm.com>
15 lines
370 B
Go
15 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")
|
|
}
|