github.com/lazyboychen7/engine@v17.12.1-ce-rc2+incompatible/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 }