Files
warewulf/internal/app/wwctl/container/list/root.go
2021-01-14 20:23:42 -08:00

19 lines
422 B
Go

package list
import "github.com/spf13/cobra"
var (
baseCmd = &cobra.Command{
Use: "list [flags]",
Short: "List imported Warewulf containers",
Long: "This command will show you the containers that are imported into Warewulf.",
RunE: CobraRunE,
Aliases: []string{"ls"},
}
)
// GetRootCommand returns the root cobra.Command for the application.
func GetCommand() *cobra.Command {
return baseCmd
}