Files
docker-cli/components/engine/daemon/graphdriver/driver_unsupported.go
John Howard e6982a9c9b Windows: graphdriver refactor
Signed-off-by: John Howard <jhoward@microsoft.com>
Upstream-commit: 4e8b2509fd60bf1ab771db618301650b988b549b
Component: engine
2015-05-20 08:51:27 -07:00

15 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
}