Signed-off-by: Antonio Murdaca <me@runcom.ninja> Upstream-commit: c79b9bab541673af121d829ebc3b29ff1b01efa2 Component: engine
14 lines
206 B
Go
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")
|
|
}
|