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