github.com/demonoid81/moby@v0.0.0-20200517203328-62dd8e17c460/daemon/graphdriver/driver_unsupported.go (about)

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