Files
warewulf/internal/app/wwctl/server/root.go
2020-12-10 20:57:32 -08:00

21 lines
336 B
Go

package server
import "github.com/spf13/cobra"
var (
baseCmd = &cobra.Command{
Use: "server",
Short: "Warewulf server process commands",
Long: "Warewulf profiles...",
}
test bool
)
func init() {
}
// GetRootCommand returns the root cobra.Command for the application.
func GetCommand() *cobra.Command {
return baseCmd
}