13 lines
140 B
Go
13 lines
140 B
Go
package main
|
|
|
|
import (
|
|
"github.com/hpcng/warewulf/internal/app/wwctl"
|
|
)
|
|
|
|
func main() {
|
|
root := wwctl.GetRootCommand()
|
|
|
|
root.Execute()
|
|
}
|
|
|