mirror of
https://github.com/moby/moby.git
synced 2026-01-16 02:11:34 +00:00
15 lines
272 B
Go
15 lines
272 B
Go
//go:build !linux
|
|
|
|
package 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")
|
|
}
|