mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix circular import for windows vfs graphdriver
Signed-off-by: Brian Goff <cpuguy83@gmail.com>
This commit is contained in:
parent
57aa0248af
commit
49834e8d59
3 changed files with 1 additions and 7 deletions
|
@ -19,6 +19,7 @@ import (
|
|||
"github.com/docker/docker/daemon/execdriver"
|
||||
"github.com/docker/docker/daemon/execdriver/execdrivers"
|
||||
"github.com/docker/docker/daemon/graphdriver"
|
||||
_ "github.com/docker/docker/daemon/graphdriver/vfs"
|
||||
"github.com/docker/docker/daemon/logger"
|
||||
"github.com/docker/docker/daemon/network"
|
||||
"github.com/docker/docker/graph"
|
||||
|
|
|
@ -13,7 +13,6 @@ import (
|
|||
"github.com/Sirupsen/logrus"
|
||||
"github.com/docker/docker/autogen/dockerversion"
|
||||
"github.com/docker/docker/daemon/graphdriver"
|
||||
_ "github.com/docker/docker/daemon/graphdriver/vfs"
|
||||
"github.com/docker/docker/graph"
|
||||
"github.com/docker/docker/pkg/archive"
|
||||
"github.com/docker/docker/pkg/fileutils"
|
||||
|
|
|
@ -1,11 +1,5 @@
|
|||
package graphdriver
|
||||
|
||||
import (
|
||||
_ "github.com/docker/docker/daemon/graphdriver/vfs"
|
||||
|
||||
// TODO Windows - Add references to real graph driver when PR'd
|
||||
)
|
||||
|
||||
type DiffDiskDriver interface {
|
||||
Driver
|
||||
CopyDiff(id, sourceId string) error
|
||||
|
|
Loading…
Reference in a new issue