github.com/khulnasoft-lab/khulnasoft@v26.0.1-0.20240328202558-330a6f959fe0+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 }