github.com/christopherobin/docker@v1.6.2/graph/load_unsupported.go (about)

     1  // +build !linux
     2  
     3  package graph
     4  
     5  import (
     6  	"github.com/docker/docker/engine"
     7  )
     8  
     9  func (s *TagStore) CmdLoad(job *engine.Job) engine.Status {
    10  	return job.Errorf("CmdLoad is not supported on this platform")
    11  }