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