17 lines
		
	
	
		
			245 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			245 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package main
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"os"
 | 
						|
 | 
						|
	"github.com/containerd/containerd/cmd/containerd/command"
 | 
						|
)
 | 
						|
 | 
						|
func main() {
 | 
						|
	app := command.App()
 | 
						|
	if err := app.Run(os.Args); err != nil {
 | 
						|
		fmt.Fprintf(os.Stderr, "containerd: %s\n", err)
 | 
						|
		os.Exit(1)
 | 
						|
	}
 | 
						|
}
 |