8f8f365787
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
12 lines
231 B
Go
12 lines
231 B
Go
// +build libcontainer
|
|
|
|
package containerd
|
|
|
|
import (
|
|
"github.com/docker/containerd/linux"
|
|
"github.com/docker/containerd/runtime"
|
|
)
|
|
|
|
func newRuntime(stateDir string) (runtime.Runtime, error) {
|
|
return linux.NewRuntime(stateDir)
|
|
}
|