Files
warewulf/internal/app/wwctl/kernel/export/root.go
2020-11-18 21:52:03 -08:00

22 lines
404 B
Go

package export
import "github.com/spf13/cobra"
var (
baseCmd = &cobra.Command{
Use: "export",
Short: "Kernel Image Export",
Long: "Export kernel image",
RunE: CobraRunE,
Args: cobra.ExactArgs(1),
}
)
func init() {
}
// GetRootCommand returns the root cobra.Command for the application.
func GetCommand() *cobra.Command {
return baseCmd
}