mirror of
https://github.com/docker/docs.git
synced 2026-04-04 18:28:58 +07:00
13 lines
204 B
Go
13 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")
|
|
}
|