mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4e8b2509fd
Signed-off-by: John Howard <jhoward@microsoft.com>
14 lines
238 B
Go
14 lines
238 B
Go
// +build !linux,!windows
|
|
|
|
package graphdriver
|
|
|
|
var (
|
|
// Slice of drivers that should be used in an order
|
|
priority = []string{
|
|
"unsupported",
|
|
}
|
|
)
|
|
|
|
func GetFSMagic(rootpath string) (FsMagic, error) {
|
|
return FsMagicUnsupported, nil
|
|
}
|