github.com/shishir-a412ed/docker@v1.3.2-0.20180103180333-fda904911d87/daemon/graphdriver/driver_unsupported.go (about) 1 // +build !linux,!windows,!freebsd 2 3 package graphdriver 4 5 var ( 6 // List of drivers that should be used in an order 7 priority = "unsupported" 8 ) 9 10 // GetFSMagic returns the filesystem id given the path. 11 func GetFSMagic(rootpath string) (FsMagic, error) { 12 return FsMagicUnsupported, nil 13 }