13 lines
		
	
	
		
			231 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 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)
 | |
| }
 | 
