github.com/anuvu/storage@v1.12.13/drivers/driver_windows.go (about)

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