Beginning to break out wwbuild into wwctl with proper Go structure and Cobra

This commit is contained in:
Gregory Kurtzer
2020-11-09 20:42:12 -08:00
parent f3ec8ee923
commit 0c369270ef
6 changed files with 333 additions and 0 deletions

13
cmd/wwctl/main.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import (
"github.com/hpcng/warewulf/internal/app/wwctl"
)
func main() {
root := wwctl.GetRootCommand()
root.Execute()
}