Files
warewulf/internal/app/wwctl/node/console/root.go
2020-12-18 18:57:03 -06:00

20 lines
332 B
Go

package console
import (
"github.com/spf13/cobra"
)
var (
powerCmd = &cobra.Command{
Use: "console",
Short: "IPMI console",
Long: "Start IPMI console for a singe node",
RunE: CobraRunE,
}
)
// GetRootCommand returns the root cobra.Command for the application.
func GetCommand() *cobra.Command {
return powerCmd
}