mirror of
https://github.com/docker/docs.git
synced 2026-04-12 14:25:46 +07:00
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")
|
|
}
|