mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
16 lines
474 B
Go
16 lines
474 B
Go
//go:build linux || freebsd
|
|
|
|
package containerd
|
|
|
|
import (
|
|
"github.com/moby/moby/v2/daemon/container"
|
|
"github.com/moby/moby/v2/daemon/internal/image"
|
|
"github.com/moby/moby/v2/errdefs"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// GetLayerFolders returns the layer folders from an image RootFS.
|
|
func (i *ImageService) GetLayerFolders(img *image.Image, rwLayer container.RWLayer, containerID string) ([]string, error) {
|
|
return nil, errdefs.NotImplemented(errors.New("not implemented"))
|
|
}
|