github.com/rawahars/moby@v24.0.4+incompatible/daemon/graphdriver/driver_unsupported.go (about)

     1  //go:build !linux && !windows && !freebsd
     2  // +build !linux,!windows,!freebsd
     3  
     4  package graphdriver // import "github.com/docker/docker/daemon/graphdriver"
     5  
     6  var (
     7  	// List of drivers that should be used in an order
     8  	priority = "unsupported"
     9  )
    10  
    11  // GetFSMagic returns the filesystem id given the path.
    12  func GetFSMagic(rootpath string) (FsMagic, error) {
    13  	return FsMagicUnsupported, nil
    14  }