load_unsupported.go 195 B

123456789101112
  1. // +build !linux
  2. package graph
  3. import (
  4. "fmt"
  5. "io"
  6. )
  7. func (s *TagStore) Load(inTar io.ReadCloser, outStream io.Writer) error {
  8. return fmt.Errorf("Load is not supported on this platform")
  9. }