Moved warewulfd commandline program into wwctl

This commit is contained in:
Gregory Kurtzer
2020-12-11 23:30:29 -08:00
parent c53c97dbcf
commit 90246f227f
16 changed files with 60 additions and 93 deletions

View File

@@ -1,8 +1,11 @@
package stop
import "github.com/spf13/cobra"
import (
"fmt"
"github.com/spf13/cobra"
)
func CobraRunE(cmd *cobra.Command, args []string) error {
fmt.Printf("Not implemented yet\n")
return nil
}