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