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