mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
fa2c68a89e
Signed-off-by: Antonio Murdaca <me@runcom.ninja>
12 lines
195 B
Go
12 lines
195 B
Go
// +build !linux
|
|
|
|
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")
|
|
}
|