Files
warewulf/internal/app/wwctl/node/ready/root.go
2021-08-22 19:17:41 -07:00

19 lines
287 B
Go

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
}