github.com/moby/docker@v26.1.3+incompatible/daemon/graphdriver/driver_windows.go (about) 1 package graphdriver // import "github.com/docker/docker/daemon/graphdriver" 2 3 // List of drivers that should be used in order 4 var priority = "windowsfilter" 5 6 // GetFSMagic returns the filesystem id given the path. 7 func GetFSMagic(rootpath string) (FsMagic, error) { 8 // Note it is OK to return FsMagicUnsupported on Windows. 9 return FsMagicUnsupported, nil 10 }