18d01f19e4
Signed-off-by: Alexander Morozov <lk4d4@docker.com>
13 lines
224 B
Go
13 lines
224 B
Go
// +build !libcontainer,!runc
|
|
|
|
package containerd
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/docker/containerd/runtime"
|
|
)
|
|
|
|
func newRuntime(stateDir string) (runtime.Runtime, error) {
|
|
return nil, errors.New("unsupported platform")
|
|
}
|