driver_windows.go 308 B

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