blob: 45bdd98be7f0771469f13fa28ac7ca3656ad4dd0 [file] [log] [blame]
// +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")
}