mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
5b6b42162b
The pkg/fsutils package was forked in containerd, and later moved to containerd/continuity/fs. As we're moving more bits to containerd, let's also use the same implementation to reduce code-duplication and to prevent them from diverging. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
8 lines
302 B
Go
8 lines
302 B
Go
package fsutils // import "github.com/docker/docker/pkg/fsutils"
|
|
|
|
import "github.com/containerd/continuity/fs"
|
|
|
|
// SupportsDType returns whether the filesystem mounted on path supports d_type.
|
|
//
|
|
// Deprecated: use github.com/containerd/continuity/fs.SupportsDType
|
|
var SupportsDType = fs.SupportsDType
|