69f8f566a2
It allows to keep main namespace cleaner Signed-off-by: Alexander Morozov <lk4d4@docker.com>
12 lines
231 B
Go
12 lines
231 B
Go
// +build libcontainer
|
|
|
|
package supervisor
|
|
|
|
import (
|
|
"github.com/docker/containerd/linux"
|
|
"github.com/docker/containerd/runtime"
|
|
)
|
|
|
|
func newRuntime(stateDir string) (runtime.Runtime, error) {
|
|
return linux.NewRuntime(stateDir)
|
|
}
|