mirror of
https://github.com/docker/docs.git
synced 2026-03-28 23:08:49 +07:00
12 lines
206 B
Go
12 lines
206 B
Go
// +build exclude_graphdriver_aufs,linux freebsd
|
|
|
|
package daemon
|
|
|
|
import (
|
|
"github.com/docker/docker/daemon/graphdriver"
|
|
)
|
|
|
|
func migrateIfAufs(driver graphdriver.Driver, root string) error {
|
|
return nil
|
|
}
|