blob: f951e7674d1f663125e3211a55e0bc8b2436ffcd [file] [log] [blame]
// +build !linux,!windows,!freebsd
package graphdriver
var (
// List of drivers that should be used in an order
priority = "unsupported"
)
// GetFSMagic returns the filesystem id given the path.
func GetFSMagic(rootpath string) (FsMagic, error) {
return FsMagicUnsupported, nil
}