github.com/chenchun/docker@v1.3.2-0.20150629222414-20467faf132b/daemon/graphdriver/driver_windows.go (about) 1 package graphdriver 2 3 type DiffDiskDriver interface { 4 Driver 5 CopyDiff(id, sourceId string) error 6 } 7 8 var ( 9 // Slice of drivers that should be used in order 10 priority = []string{ 11 "windows", 12 "vfs", 13 } 14 ) 15 16 func GetFSMagic(rootpath string) (FsMagic, error) { 17 // Note it is OK to return FsMagicUnsupported on Windows. 18 return FsMagicUnsupported, nil 19 }