2015-12-07 20:38:31 +00:00
|
|
|
// +build !libcontainer,!runc
|
2015-12-01 23:47:27 +00:00
|
|
|
|
|
|
|
package containerd
|
|
|
|
|
|
|
|
import (
|
2015-12-07 20:38:31 +00:00
|
|
|
"errors"
|
|
|
|
|
2015-12-01 23:47:27 +00:00
|
|
|
"github.com/docker/containerd/runtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
func newRuntime(stateDir string) (runtime.Runtime, error) {
|
2015-12-07 20:38:31 +00:00
|
|
|
return nil, errors.New("unsupported platform")
|
2015-12-01 23:47:27 +00:00
|
|
|
}
|