driver_unsupported.go 286 B

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