mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
aed8f9f76e
Signed-off-by: John Howard <jhoward@microsoft.com>
12 lines
204 B
Go
12 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")
|
|
}
|