Something very weird happened with git for me, here is the fix.

This commit is contained in:
Gregory Kurtzer
2020-11-11 22:33:13 -08:00
parent aeec20fa21
commit 46bde8b54d
9 changed files with 378 additions and 0 deletions

12
cmd/warewulfd/main.go Normal file
View File

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