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