blob: 3f368648781b13e1eb344ca8b57ade26e9d1f2d5 [file] [log] [blame]
// +build !linux,!windows
package graphdriver
var (
// Slice of drivers that should be used in an order
priority = []string{
"unsupported",
}
)
func GetFSMagic(rootpath string) (FsMagic, error) {
return FsMagicUnsupported, nil
}