package cmd import ( "github.com/spf13/cobra" ) var ( rootCommand = &cobra.Command{ Use: "upod", Short: "upod is a simple container runtime implementation", } ) func initRootCommand() { }