Files
docker-cli/components/engine/plugin/v2/plugin_unsupported.go
Brian Goff 4c7a840b18 Move plugin client creation to the extension point
Signed-off-by: Brian Goff <cpuguy83@gmail.com>
Upstream-commit: f51a96c0165fdcbbe11f62b66b582b7e202f211b
Component: engine
2018-05-25 15:18:53 -04:00

15 lines
318 B
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")
}