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