github.com/Prakhar-Agarwal-byte/moby@v0.0.0-20231027092010-a14e3e8ab87e/daemon/graphdriver/driver_windows.go (about) 1 package graphdriver // import "github.com/Prakhar-Agarwal-byte/moby/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 }