driver_unsupported.go 312 B

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