driver_windows.go 325 B

1234567891011121314
  1. package graphdriver
  2. var (
  3. // Slice of drivers that should be used in order
  4. priority = []string{
  5. "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. }