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

     1  package graphdriver // import "github.com/demonoid81/moby/daemon/graphdriver"
     2  
     3  var (
     4  	// List of drivers that should be used in order
     5  	priority = "windowsfilter"
     6  )
     7  
     8  // GetFSMagic returns the filesystem id given the path.
     9  func GetFSMagic(rootpath string) (FsMagic, error) {
    10  	// Note it is OK to return FsMagicUnsupported on Windows.
    11  	return FsMagicUnsupported, nil
    12  }