Still working on CLI framework for wwctl overlay

This commit is contained in:
Gregory Kurtzer
2020-11-16 22:43:13 -08:00
parent 85603ee947
commit 108174d35c
9 changed files with 123 additions and 8 deletions

View File

@@ -0,0 +1,12 @@
package delete
import (
"fmt"
"github.com/spf13/cobra"
)
func CobraRunE(cmd *cobra.Command, args []string) error {
fmt.Printf("Delete: Hello World\n")
return nil
}