load_unsupported.go 206 B

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