package ready import ( "github.com/spf13/cobra" ) var ( baseCmd = &cobra.Command{ Use: "ready", Short: "Warewulf Status Check", RunE: CobraRunE, } ) // GetRootCommand returns the root cobra.Command for the application. func GetCommand() *cobra.Command { return baseCmd }