10 lines
188 B
Go
10 lines
188 B
Go
// +build libcontainer
|
|
|
|
package containerd
|
|
|
|
import "github.com/docker/containerd/runtime"
|
|
|
|
func newRuntime(stateDir string) (runtime.Runtime, error) {
|
|
return linux.NewRuntime(stateDir)
|
|
}
|