Files
docker-cli/components/engine/graph/load_unsupported.go
Antonio Murdaca a16f3d6cb4 Remove engine.Status and replace it with standard go error
Signed-off-by: Antonio Murdaca <me@runcom.ninja>
Upstream-commit: c79b9bab541673af121d829ebc3b29ff1b01efa2
Component: engine
2015-03-25 22:32:08 +01:00

14 lines
206 B
Go

// +build !linux
package graph
import (
"fmt"
"github.com/docker/docker/engine"
)
func (s *TagStore) CmdLoad(job *engine.Job) error {
return fmt.Errorf("CmdLoad is not supported on this platform")
}