21 lines
336 B
Go
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
|
|
}
|