Files
warewulf/cmd/wwctl/main.go
2021-09-08 11:38:39 -07:00

17 lines
188 B
Go

package main
import (
"os"
"github.com/hpcng/warewulf/internal/app/wwctl"
)
func main() {
root := wwctl.GetRootCommand()
err := root.Execute()
if err != nil {
os.Exit(255)
}
}