moby--moby/graph/load_unsupported.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")
}