github.com/kaisenlinux/docker.io@v0.0.0-20230510090727-ea55db55fac7/engine/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 }