mirror of
https://github.com/clearlinux/docker.git
synced 2026-09-01 11:15:59 +00:00
15 lines
238 B
Go
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
|
|
}
|