Files
moby/plugin/v2/plugin_unsupported.go
Sebastiaan van Stijn 5c48736863 remove redundant alias for runtime-spec
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2024-10-26 18:31:39 +02:00

15 lines
319 B
Go

//go:build !linux
package v2 // import "github.com/docker/docker/plugin/v2"
import (
"errors"
"github.com/opencontainers/runtime-spec/specs-go"
)
// InitSpec creates an OCI spec from the plugin's config.
func (p *Plugin) InitSpec(execRoot string) (*specs.Spec, error) {
return nil, errors.New("not supported")
}