Signed-off-by: Antonio Murdaca <me@runcom.ninja> Upstream-commit: fa2c68a89e153cfc82c5af7cbb6d7f15b06e0a8c Component: engine
13 lines
195 B
Go
13 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")
|
|
}
|