Files
warewulf/cmd/wwctl/main.go
Christian Goll b27951b59f added binary to create bash completion
also do not bail out, when configs can't be read, still the
2021-08-10 11:15:33 +02:00

13 lines
140 B
Go

package main
import (
"github.com/hpcng/warewulf/internal/app/wwctl"
)
func main() {
root := wwctl.GetRootCommand()
root.Execute()
}