Files
warewulf/internal/app/wwctl/ready/root.go
2020-12-01 23:33:28 -08:00

23 lines
338 B
Go

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