2015-05-11 13:23:32 -04:00
|
|
|
// +build !linux,!windows
|
2014-11-24 18:28:20 -05:00
|
|
|
|
|
|
|
package graph
|
|
|
|
|
|
|
|
import (
|
2015-03-25 03:44:12 -04:00
|
|
|
"fmt"
|
2015-04-23 15:05:21 -04:00
|
|
|
"io"
|
2014-11-24 18:28:20 -05:00
|
|
|
)
|
|
|
|
|
2015-07-21 12:21:45 -04:00
|
|
|
// 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.
|
2015-04-23 15:05:21 -04:00
|
|
|
func (s *TagStore) Load(inTar io.ReadCloser, outStream io.Writer) error {
|
|
|
|
return fmt.Errorf("Load is not supported on this platform")
|
2014-11-24 18:28:20 -05:00
|
|
|
}
|