14 lines
217 B
Go
14 lines
217 B
Go
|
// +build !libcontainer
|
||
|
|
||
|
package containerd
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
|
||
|
"github.com/docker/containerd/runtime"
|
||
|
)
|
||
|
|
||
|
func newRuntime(stateDir string) (runtime.Runtime, error) {
|
||
|
return nil, errors.New("Unsupported runtime")
|
||
|
}
|